-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
31 lines (30 loc) · 907 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
{
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [0],
"max-len": [1, {"code": 150}],
"no-underscore-dangle": [0],
"no-console": [0],
"arrow-parens": [0],
"consistent-return": [0],
"no-confusing-arrow": [0],
"import/prefer-default-export": [0],
"import/no-named-as-default": [0],
"jsx-a11y/no-static-element-interactions": [0],
"array-callback-return": [0],
"prefer-promise-reject-errors": [0],
"react/self-closing-comp": [0],
"class-methods-use-this": [0],
"object-curly-newline": [0],
"react/no-unused-state": [0],
"react/no-typos": [0],
"react/require-default-props": [0],
"no-shadow": [0],
"react/forbid-prop-types": [0, { "forbid": [ "array", "object"] }]
}
}