-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc
165 lines (165 loc) · 3.96 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"extends": ["airbnb-typescript", "prettier"],
"parser": "@typescript-eslint/parser",
"root": true,
"env": {
"browser": true
},
"plugins": ["spellcheck"],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"rules": {
"react/no-unescaped-entities": "off",
"@typescript-eslint/comma-dangle": ["error", "never"],
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-use-before-define": "off",
"arrow-body-style": "off",
"class-methods-use-this": "off",
"comma-dangle": "off",
"default-case": "off",
"import/extensions": ["error", "never", { "json": "always" }],
"import/no-cycle": "off",
"import/prefer-default-export": "off",
"max-classes-per-file": "off",
"max-lines": ["error", 500],
"max-lines-per-function": ["error", 300],
// "no-await-in-loop": "off",
"no-empty-function": ["error", { "allow": ["constructors"] }],
"no-extra-boolean-cast": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-return-assign": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"no-useless-constructor": "off",
"react/destructuring-assignment": "off",
"react/forbid-foreign-prop-types": "off",
"react/forbid-prop-types": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-wrap-multilines": "off",
"react/prop-types": "off",
"react/static-property-placement": "off",
"yoda": "off",
"spellcheck/spell-checker": [
"warn",
{
"comments": true,
"strings": true,
"identifiers": true,
"lang": "en_US",
"skipWords": [
"ast",
"austin",
"babelrc",
"callee",
"declarator",
"deprioritize",
"dom",
"func",
"hydratable",
"jsx",
"loc",
"mjs",
"namespace",
"parent",
"readonly",
"reconciler",
"renderer",
"renderers",
"subtree",
"texas",
"tsx",
"typeof",
"umd"
],
"skipIfMatch": ["http?://[^s]*", "^[-\\w]+/[-\\w\\.]+$"],
"skipWordIfMatch": [],
"minLength": 3
}
],
"lines-between-class-members": [
"error",
"always",
{ "exceptAfterSingleLine": true }
],
"import/no-unresolved": [
"error",
{
"ignore": ["^~"]
}
],
"no-unused-vars": [
"warn",
{
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true,
"vars": "all"
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true,
"vars": "all"
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.spec.js",
"**/*.spec.jsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.story.js",
"**/*.story.jsx",
"**/*.story.ts",
"**/*.story.tsx",
"**/*.test.js",
"**/*.test.jsx",
"**/*.test.ts",
"**/*.test.tsx",
"storybook/**/*.js",
"storybook/**/*.jsx",
"storybook/**/*.ts",
"storybook/**/*.tsx",
"tests/*.js",
"tests/*.jsx",
"tests/*.ts",
"tests/*.tsx"
]
}
]
},
"overrides": [
{
"files": ["*.test.js", "*.test.jsx", "*.test.ts", "*.test.tsx"],
"env": {
"jest": true
},
"plugins": ["jest"]
},
{
"files": ["*.ts", "*.tsx"],
"rules": {
"no-unused-vars": "off"
}
}
],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}