-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy path.eslintrc
78 lines (78 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"root": true,
"extends": [
"prettier",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:yaml/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"import",
"react",
"yaml"
],
"settings": {
"import/ignore": [
"node_modules",
".png$",
".jpg$"
],
"react": {
"version": "detect"
}
},
"globals": {
"window": true,
"document": true
},
"rules": {
"import/no-unresolved": "off",
"import/no-duplicates": "off",
"import/no-named-as-default": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": true
}
],
"linebreak-style": "off",
"react/jsx-filename-extension": 0,
"jsx-quotes": ["error", "prefer-double"],
"import/prefer-default-export": "off",
"react/forbid-prop-types": "off",
"react/prop-types": 0,
"react/no-danger": "off",
"react/require-default-props": "off",
"react/no-array-index-key": "off",
"no-use-before-define": 0,
"global-require": 0,
"no-param-reassign": 0,
"no-useless-escape": "off",
"spaced-comment": "error",
"curly": ["error", "multi-line"],
"eol-last": ["error", "always"],
"guard-for-in": "error",
"no-unused-labels": "error",
"no-caller": "error",
"no-bitwise": "error",
"no-multiple-empty-lines": "error",
"no-new-wrappers": "error",
"no-eval": "error",
"dot-notation": "error",
"no-trailing-spaces": "error",
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
"brace-style": "error",
"quotes": ["error", "single"],
"default-case": "error",
"eqeqeq": "error"
}
}