forked from FormidableLabs/nuka-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
31 lines (31 loc) · 645 Bytes
/
.eslintrc
File metadata and controls
31 lines (31 loc) · 645 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
30
31
{
"extends": ["formidable/configurations/es6-react", "prettier", "jest-enzyme"],
"env": {
"node": true,
"browser": true,
"jest": true
},
"globals": {
"page": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"react/no-multi-comp": 0,
"max-params": 0,
"no-magic-numbers": 0,
"react/prefer-es6-class": 0,
"react/prop-types": 0,
"react/sort-prop-types": 0,
"react/no-string-refs": 0,
"max-statements": 0,
"no-invalid-this": 0
}
}