-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.json
30 lines (30 loc) · 907 Bytes
/
.eslintrc.json
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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"rules": {
"react/prop-types": [0],
"react/no-unused-prop-types":[0],
"react/jsx-filename-extension": [1, { "extensions": [".js",".jsx"] }],
"react/jsx-first-prop-new-line":[0],
"react/no-array-index-key":[0],
"arrow-body-style": [0],
"arrow-parens": [0],
"no-console":"warn",
"jsx-a11y/anchor-is-valid": [0],
"jsx-a11y/click-events-have-key-events": [0],
"jsx-a11y/interactive-supports-focus": [0],
"jsx-a11y/no-static-element-interactions":[0],
"jsx-a11y/no-noninteractive-element-interactions":[0],
"import/prefer-default-export": [0],
"comma-dangle":[0],
"no-underscore-dangle": [0],
"object-curly-newline":[0],
"indent":[0]
}
}