X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.eslintrc.json;h=ef726dc74bd594c4a3658dd62c47438ec021aaff;hb=b2b606263e2676354259164d532ff9aa91ccdf87;hp=38c78361bb062bac85012393781c71e23914a60d;hpb=0bf7412ad3baaccb780dd936463cd0fa1fb63b97;p=e-mobility-charging-stations-simulator.git diff --git a/.eslintrc.json b/.eslintrc.json index 38c78361..ef726dc7 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/eslintrc", + "$schema": "https://json.schemastore.org/eslintrc", "root": true, "env": { "es2022": true, @@ -15,7 +15,7 @@ "settings": { "import/resolver": { "typescript": { - "project": "./tsconfig-base.json" + "project": "./tsconfig.json" } } }, @@ -91,7 +91,7 @@ "no-var": "error", "prefer-const": "error", "sort-imports": [ - "warn", + "error", { "ignoreCase": false, "ignoreDeclarationSort": true, @@ -100,7 +100,6 @@ "allowSeparatedGroups": true } ], - "import/no-unresolved": "error", "import/order": [ "error", { @@ -143,7 +142,7 @@ "files": ["**/*.ts"], "parser": "@typescript-eslint/parser", "parserOptions": { - "project": "./tsconfig-base.json" + "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"], "extends": [