-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
96 lines (96 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
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
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:storybook/recommended",
"plugin:storybook/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-use-before-define": "off",
"curly": "error",
"no-continue": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"object-curly-newline": "off",
"no-underscore-dangle": "off",
"quotes": [
"error",
"single"
],
"import/prefer-default-export": "off",
"max-len": [
"error",
{
"code": 150
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"no-magic-numbers": [
"error",
{
"ignore": [
-1,
0,
1
],
"ignoreDefaultValues": true
}
],
"newline-per-chained-call": [
"off",
{
"ignoreChainWithDepth": 1
}
],
"no-warning-comments": [
0,
{
"terms": [
"todo",
"fixme"
],
"location": "start"
}
]
}
}