-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path.eslintrc
36 lines (36 loc) · 950 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true
},
"rules": {
"comma-dangle": "off",
"global-require": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"react/jsx-filename-extension": "off",
"react/prefer-stateless-function": ["error", {"ignorePureComponents": true}],
"react/jsx-tag-spacing": "off",
"react/forbid-prop-types": "off",
"react/no-array-index-key": "off",
"react/static-property-placement": ["off"],
"react/state-in-constructor": ["off"],
"react/destructuring-assignment": ["off"],
"jsx-a11y/click-events-have-key-events": ["off"],
"jsx-a11y/no-static-element-interactions": "off",
"no-alert": "off",
"no-bitwise": "off"
},
"globals": {
"jQuery": false,
"$": false
},
"settings": {
"react": {
"version": "16.0"
}
}
}