X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.eslintrc;h=2153335c5ebfd5164e4f1b88eded5fc72bd0ff11;hb=44eeecebb942017920da10af6596ddf608b61ddb;hp=570306d6fe7ac4add0025d38dbae07479d86349a;hpb=3340259a3cd75024ae3510433f4bf4232c8de7fb;p=e-mobility-charging-stations-simulator.git diff --git a/.eslintrc b/.eslintrc index 570306d6..2153335c 100644 --- a/.eslintrc +++ b/.eslintrc @@ -8,19 +8,39 @@ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", + "plugin:import/errors", + "plugin:import/warnings", + "plugin:import/typescript", "plugin:jsdoc/recommended" ], "plugins": [ - "@typescript-eslint", - "jsdoc" + "import", + "jsdoc", + "@typescript-eslint" ], + "settings": { + "jsdoc": { + "mode": "typescript" + } + }, "rules": { "indent": "off", "@typescript-eslint/indent": [ "error", 2, { - "SwitchCase": 1 + "SwitchCase": 1, + "CallExpression": { + "arguments": 1 + }, + "FunctionDeclaration": { + "parameters": 2, + "body": 1 + }, + "FunctionExpression": { + "parameters": 2, + "body": 1 + } } ], "@typescript-eslint/array-type": "off", @@ -66,7 +86,8 @@ ], "no-useless-catch": "error", "no-useless-return": "error", - "no-shadow": "error", + "no-shadow": "off", // This one is generating false positive no-shadow errors on exported/const enums + "@typescript-eslint/no-shadow": "error", "no-multiple-empty-lines": [ "error", { @@ -98,6 +119,20 @@ "keyword-spacing": [ "error" ], + "id-blacklist": [ + "error", + "any", + "Number", + "number", + "String", + "string", + "Boolean", + "boolean", + "Undefined", + "undefined", + "Symbol", + "symbol" + ], "linebreak-style": [ "error", "unix" @@ -177,5 +212,18 @@ "error", "single" ] - } + }, + "overrides": [ + { + "files": [ + "*.js" + ], + "extends": "plugin:node/recommended", + "rules": { + "node/shebang": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-var-requires": "off" + } + } + ] }