From d0a40bc0edb1f7c97c1953a860bc8ee90600ed01 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 28 Nov 2022 15:59:15 +0100 Subject: chore: update deps --- .eslintrc.json | 42 +----------------------------------------- 1 file changed, 1 insertion(+), 41 deletions(-) (limited to '.eslintrc.json') diff --git a/.eslintrc.json b/.eslintrc.json index 0eb6689..9bbe4f5 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -109,46 +109,6 @@ "unused-imports/no-unused-imports": "error", - "path-alias/no-relative": "error", - - "@typescript-eslint/no-restricted-imports": [ - "error", - { - "paths": [ - // shrug, couldn't find a better way since the pattern one doesn't work: - // ["utils", "!utils/*"] - { - "name": "./utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - }, - { - "name": "../utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - }, - { - "name": "../../utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - }, - { - "name": "../../../utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - }, - { - "name": "../../../../utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - }, - { - "name": "../../../../../utils", - "message": "Do not import from index. This might cause issues. Import from the specific file instead.", - "allowTypeImports": true - } - ] - } - ] + "path-alias/no-relative": "error" } } -- cgit