forked from antonioru/beautiful-react-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 773 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": ["chai-expect", "jsx-a11y"],
"env": {
"browser": true,
"mocha": true
},
"rules": {
"max-len": ["error", { "code": 120 }],
"object-curly-newline": "off",
"react/jsx-filename-extension": [1, { "extensions": [ ".js", ".jsx" ] } ],
"react/prop-types": [2, { "ignore": ["className", "children", "style"] }],
"react/jsx-props-no-spreading": "off"
},
"overrides": [
{
"files": [
"*.test.js",
"*.spec.js",
"*.test.jsx",
"*.spec.jsx"
],
"globals": {
"expect": "readonly",
"should": "readonly",
"sinon": "readonly"
},
"rules": {
"no-unused-expressions": "off"
}
}
]
}