forked from snyk/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
62 lines (60 loc) · 1.89 KB
/
.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
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
{
"parser": "@typescript-eslint/parser",
// Pending https://github.com/typescript-eslint/typescript-eslint/issues/389
// parserOptions: {
// project: './tsconfig.json',
// },
"env": {
"node": true,
"es6": true
},
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:anti-trojan-source/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "warn",
// non-null assertions compromise the type safety somewhat, but many
// our types are still imprecisely defined and we don't use noImplicitAny
// anyway, so for the time being assertions are allowed
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-prototype-builtins": "off",
"require-atomic-updates": "off",
"no-restricted-imports": [
"error",
{ "paths": ["lodash"], "patterns": ["lodash/*"] }
],
"no-buffer-constructor": "error"
},
"overrides": [
{
"files": ["*.ts"],
"rules": {
"@typescript-eslint/ban-types": "warn",
"id-blacklist": ["error", "exports"] // in TS, use "export" instead of Node's "module.exports"
}
},
{
"files": "*.spec.*",
"extends": ["plugin:jest/recommended"],
"rules": {
"jest/no-done-callback": "warn",
"jest/valid-title": "warn",
"jest/no-conditional-expect": "warn",
"jest/no-try-expect": "warn",
"jest/no-identical-title": "warn",
"@typescript-eslint/ban-ts-comment": "warn"
}
}
]
}