-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
99 lines (99 loc) · 1.64 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
{
"overrides": [
{
"files": [
"**/test/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"env": {
"jest": true
},
"rules": {
"react/prop-types": 0,
"global-require": 1
}
},
{
"files": [
"**/*.stories.js"
],
"rules": {
"import/no-extraneous-dependencies": 0
}
}
],
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"airbnb",
"airbnb/hooks"
],
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"computed-property-spacing": [
"error",
"always"
],
"import/no-unresolved": 0,
"import/prefer-default-export": 1,
"linebreak-style": 0,
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_"
}
],
"no-shadow": 0,
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
],
"react/jsx-filename-extension": 0,
"react/sort-comp": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-no-duplicate-props": [
"error",
{
"ignoreCase": false
}
],
"semi": [
"error",
"never"
],
"semi-style": [
"error",
"first"
],
"space-in-parens": [
"error",
"always",
{
"exceptions": [
"empty"
]
}
]
}
}