-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy path.eslintrc
More file actions
29 lines (29 loc) · 686 Bytes
/
.eslintrc
File metadata and controls
29 lines (29 loc) · 686 Bytes
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
{
"root": true,
"parser": "babel-eslint",
"extends": [
"airbnb",
"prettier",
"./packages/eslint-config-jest-enzyme/index.js"
],
"env": {
"jasmine": true,
"jest": true
},
"rules": {
"import/no-extraneous-dependencies": 0,
"jsx-a11y/anchor-has-content": 0,
"jsx-a11y/anchor-is-valid": 0,
"max-len": 0,
"no-case-declarations": 0,
"no-underscore-dangle": 0,
"no-prototype-builtins": 0,
"react/jsx-filename-extension": 0,
"react/jsx-indent": 0,
"react/jsx-wrap-multilines": 0,
"react/no-unused-state": 0,
"react/no-string-refs": 0,
"react/require-default-props": 0,
"react/forbid-prop-types": 0
}
}