-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
63 lines (63 loc) · 1.47 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
63
{
"env": {
"es6": true,
"node": true,
"jest": true,
"mocha": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"import/no-unresolved": "off",
"linebreak-style": "off",
"import/newline-after-import": "off",
"no-underscore-dangle": "off",
"no-restricted-globals": "off",
"dot-notation": "off",
"func-names": "off",
"prefer-arrow-callback": "off",
"import/prefer-default-export": "off",
"comma-dangle": "off",
"prefer-destructuring": "off",
"no-plusplus": "off",
"no-unused-vars": "off",
"import/order": "off",
"camelcase": "off",
"arrow-parens": "off",
"no-use-before-define": "off",
"no-await-in-loop": "off",
"no-param-reassign": "off",
"no-unused-expressions": "off",
"consistent-return": "off",
"no-loop-func": "off",
"no-restricted-syntax": "off",
"no-prototype-builtins": "off",
"import/first": "off",
"lines-between-class-members": "off",
"no-mixed-operators": "off",
"import/no-duplicates": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": "off",
"max-len": [
"error",
{
"code": 140
}
],
"no-continue": "off",
"indent": "off"
}
}