-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
112 lines (112 loc) · 3.2 KB
/
.eslintrc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"extends": [
"airbnb",
"plugin:ava/recommended",
"plugin:import/recommended",
"plugin:jsdoc/recommended",
"plugin:jsx-a11y/recommended",
"plugin:n/recommended",
"plugin:optimize-regex/all",
"plugin:security/recommended-legacy",
"plugin:sonarjs/recommended",
"plugin:@typescript-eslint/recommended-type-checked"
],
"plugins": [
"@typescript-eslint",
"anti-trojan-source",
"ava",
"import",
"jsdoc",
"jsx-a11y",
"no-inferred-method-name",
"n",
"optimize-regex",
"security",
"sonarjs",
"xss"
],
"env": {
"browser": true,
"node": true
},
"globals": {
"sinon": false,
"expect": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"project": "./tsconfig.json",
"requireConfigFile": false,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-unsafe-argument": "warn",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "warn",
"anti-trojan-source/no-bidi": "error",
"ava/no-only-test": "warn",
"camelcase": 0,
"consistent-return": ["warn", { "treatUndefinedAsUnspecified": false }],
"import/no-commonjs": 0,
"import/no-dynamic-require": 0,
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": ["**/*.test.js", "**/test/**/*.js"],
"optionalDependencies": true,
"peerDependencies": true
}
],
"import/extensions": ["warn", "ignorePackages"],
"import/no-unresolved": 0,
"max-len": 0,
"no-continue": 0,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-syntax": [
"error",
{
"selector": "ForInStatement",
"message": "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array."
},
{
"selector": "LabeledStatement",
"message": "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand."
},
{
"selector": "WithStatement",
"message": "`with` is disallowed in strict mode because it makes code impossible to predict and optimize."
}
],
"no-return-await": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "caughtErrors": "none" }],
"object-curly-newline": 0,
"optimize-regex/optimize-regex": "warn",
"security/detect-non-literal-fs-filename": 0,
"security/detect-non-literal-require": 0,
"security/detect-object-injection": 0,
"sonarjs/cognitive-complexity": 0,
"sonarjs/no-duplicate-string": 0
},
"overrides": [
{
"files": ["**/*.test.js", "test/_helpers/*.*"],
"parserOptions": {
"project": "./test/tsconfig.json"
}
}
],
"settings": {
"jsdoc": {
"mode": "typescript"
},
"react": {
"version": "detect"
}
}
}