-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
55 lines (55 loc) · 1.49 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
{
"extends": [
"react-app",
"airbnb"
],
"plugins": [
"simple-import-sort",
"@typescript-eslint"
],
"rules": {
"consistent-return": "off",
"indent": [
"error",
4
],
"max-len": "warn",
"no-param-reassign": "off",
"no-restricted-syntax": ["error", "WithStatement", "BinaryExpression[operator=' in ']"],
"no-unused-expressions": "off",
"no-unused-vars": "off",
"prefer-const": "warn",
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^(React|_)" }],
"react/no-array-index-key": "off",
"react/jsx-indent": [
"error",
4
],
"react/jsx-indent-props": [
"error",
4
],
"react/jsx-filename-extension": "off",
"react/jsx-props-no-spreading": "off",
"jsx-quotes": [
"error",
"prefer-single"
],
"react/jsx-boolean-value": [
"error",
"always"
],
"react/jsx-sort-props": "warn",
"import/extensions": "off",
"import/prefer-default-export": "off",
// auto-fix import order
"simple-import-sort/sort": "error"
},
"settings": {
"import/resolver": {
// use <root>/tsconfig.json
"typescript": {}
}
}
}