-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy path.eslintrc.json
32 lines (32 loc) · 1003 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"env": { "es6": true, "node": true },
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"typestrict",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": "tsconfig.json", "sourceType": "module" },
"plugins": [
"eslint-plugin-jsdoc",
"eslint-plugin-prefer-arrow",
"eslint-plugin-import",
"sonarjs",
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/adjacent-overload-signatures": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": [
"error",
{ "ignoreParameters": true, "ignoreProperties": true }
],
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"no-console": "error",
"sonarjs/no-identical-conditions": "off"
}
}