-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 852 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
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6
},
"extends": "airbnb",
"plugins": ["react", "jsx-a11y", "import"],
"rules": {
"linebreak-style": 0,
"function-paren-newline": 0,
"comma-dangle": 0,
"arrow-parens": 0,
"arrow-body-style": 0,
"space-before-function-paren": 0,
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx"]
}
],
"import/no-extraneous-dependencies": 0,
"react/require-default-props": 0,
"react/no-did-mount-set-state": 0,
"react/forbid-prop-types": 0,
"react/no-string-refs": 0,
"no-return-assign": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"Promise": false
}
}