-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
41 lines (41 loc) · 1009 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true
},
"plugins": [
"flowtype",
"react",
"jsx-a11y",
"import"
],
"rules": {
"max-len": ["error", {
"code": 80
}],
"linebreak-style": 0,
"react/jsx-filename-extension": [1, {
"extensions": [".js"]
}
],
"react/prefer-stateless-function": [2, {
"ignorePureComponents": true
}
],
"import/extensions": [1, "never", {
"svg": "always"
}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": false
}
],
"indent": ["error", 4, {
"ignoredNodes": ["JSXElement *", "JSXElement"]
}],
"react/jsx-indent": ["error", 4]
}
}