-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
38 lines (38 loc) · 819 Bytes
/
.eslintrc
File metadata and controls
38 lines (38 loc) · 819 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
32
33
34
35
36
37
38
{
"extends": ["airbnb", "prettier"],
"plugins": ["prettier"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"import/no-dynamic-require": 0,
"import/extensions": 0,
"no-plusplus": 0,
"global-require": 0,
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all"
}
],
"jsx-a11y/label-has-for": 0,
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/anchor-is-valid": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"no-confusing-arrow": 0,
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"camelcase": 0
},
"env": {
"browser": false,
"jest": true
},
"globals": {}
}