-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
60 lines (60 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": [
"airbnb",
"prettier",
"plugin:import/warnings"
],
"plugins": ["prettier", "import", "react-hooks"],
"globals": {
"document": true,
"window": true,
"process": true,
"shallow": true,
"beforeAll": true,
"render": true,
"mount": true,
"it": true,
"expect": true
},
"rules": {
"class-methods-use-this": 0,
"consistent-return": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": [2, { "caseSensitive": false }],
"import/prefer-default-export": 0,
"jsx-a11y/anchor-is-valid": 0,
"lines-between-class-members" : ["error", "always"],
"no-underscore-dangle": ["error"],
"no-unused-expressions": ["error", { "allowTaggedTemplates": true }],
"no-param-reassign": ["error", { "props": false }],
"prettier/prettier": "error",
"quotes": [2, "single"],
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error",
"react/destructuring-assignment": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-props-no-spreading": 0,
"react/no-unused-prop-types": 0,
"react/react-in-jsx-scope": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ios.js", ".android.js"],
"paths": ["./"]
}
}
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
}
}