forked from springload/react-accessible-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
executable file
·29 lines (29 loc) · 849 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"indent": [2, 4],
"max-len": [1, 120, 4, {"ignoreUrls": true}],
"id-length": [0],
"object-shorthand": [2, "methods"],
"arrow-body-style": [0],
"no-new": [1],
"new-cap": [0],
"no-multi-spaces": [0],
"no-underscore-dangle": [0],
"no-warning-comments": [1, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
"react/sort-comp": [0],
"react/jsx-boolean-value": [0],
"react/jsx-no-bind": [1],
"react/jsx-indent": [2, 4],
"react/jsx-indent-props": [2, 4],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }]
},
"env": {
"jest": true,
"es6": true,
"browser": true
},
"globals": {
}
}