-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
51 lines (51 loc) · 1.36 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"extends": ["airbnb", "prettier", "prettier/react", "eslint:recommended"],
"plugins": ["prettier", "unused-imports"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"react/require-extension": "off",
"react/jsx-filename-extension": 0,
"react/no-danger": 0,
"react/prop-types": 0,
"react/require-default-props": 0,
"react/no-did-mount-set-state": 0,
"react/destructuring-assignment": 0,
"react/no-unused-prop-types": 0,
"react/no-array-index-key": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-fragments": 0,
"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": ["error", { "properties": "always" }],
"newline-before-return": 1,
"no-multiple-empty-lines": ["error", { "max": 1 }]
},
"env": {
"browser": true,
"jest": true
},
"globals": {}
}