-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
62 lines (62 loc) · 1.28 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
{
"env": {
"browser": false,
"commonjs": true,
"es6": true,
"jest": true,
"node": true,
"worker": true
},
"extends": [
"eslint:all",
"airbnb",
"plugin:@typescript-eslint/recommended",
"plugin:node/recommended",
"plugin:security/recommended",
"plugin:promise/recommended",
"plugin:import/warnings"
],
"globals": {
"Array": true,
"Date": true,
"JSON": true,
"Map": true,
"Math": true,
"Number": true,
"Object": true,
"Promise": true,
"Set": true,
"URL": true,
"document": false,
"navigator": false,
"process": true,
"window": false
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"codeFrame": false,
"ecmaFeatures": {
"impliedStrict": true
},
"ecmaVersion": 10,
"sourceType": "module"
},
"plugins": [
"filenames",
"import",
"promise",
"security"
],
"root": true,
"rules": {
"no-restricted-syntax": 0,
"node/no-missing-import": 0,
"node/no-unpublished-import": 0,
"import/extensions": 0,
"import/no-unresolved": 0,
"node/no-unsupported-features/es-syntax": 0,
"node/no-unsupported-features/node-builtins": 0,
"function-call-argument-newline": [2, "never"],
"linebreak-style": 0
}
}