-
Notifications
You must be signed in to change notification settings - Fork 45
/
.eslintrc.yml
163 lines (162 loc) · 3.13 KB
/
.eslintrc.yml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
parser: '@babel/eslint-parser'
env:
browser: true
es6: true
extends:
- "eslint:recommended"
- "prettier"
- "plugin:react/recommended"
- "plugin:react-hooks/recommended"
- "plugin:cypress/recommended"
- "plugin:testing-library/react"
- "plugin:jest-dom/recommended"
parserOptions:
ecmaVersion: 6
sourceType: module
settings:
react:
version: 'detect'
globals:
beforeAll: true
beforeEach: true
describe: true
expect: true
global: true
insights: true
it: true
mount: true
process: true
render: true
shallow: true
React: true
jest: true
cy: true
rules:
no-console: 2
no-async-promise-executor: 0
no-misleading-character-class: 0
no-prototype-builtins: 0
no-shadow-restricted-names: 0
no-useless-catch: 0
no-dupe-else-if: 0
no-import-assign: 0
no-setter-return: 0
require-atomic-updates: 0
array-bracket-spacing: 2
jsx-quotes: [2, 'prefer-double']
react-hooks/exhaustive-deps: 0
react/jsx-curly-brace-presence: 2
react/boolean-prop-naming: 2
react/no-children-prop: 2
react/display-name: 0
react/no-deprecated: 2
react/no-direct-mutation-state: 2
react/no-typos: 2
react/no-unused-prop-types: 2
react/no-unused-state: 2
react/prefer-es6-class: 2
react/prefer-read-only-props: 2
react/require-render-return: 2
react/jsx-curly-spacing: 2
react/state-in-constructor: 2
react/static-property-placement: 2
react/style-prop-object: 2
react/jsx-boolean-value: 2
react/jsx-handler-names: 2
react/jsx-no-useless-fragment: 2
react/jsx-no-target-blank: 2
react/jsx-props-no-multi-spaces: 2
react/self-closing-comp: 2
react/jsx-equals-spacing: 2
react/sort-comp:
[
2,
{
order:
[
"static-methods",
"lifecycle",
"everything-else",
"/^handle.+$/",
"render",
],
},
]
comma-dangle: 2
comma-spacing:
- 2
- after: true
comma-style: 2
camelcase: [2, { properties: never }]
curly:
- error
- all
dot-notation: 2
eol-last: 2
eqeqeq: 2
func-names:
- error
- never
indent:
- error
- 4
- SwitchCase: 1
ImportDeclaration: 1
ObjectExpression: 1
key-spacing: 2
keyword-spacing: 2
linebreak-style:
- error
- unix
max-len:
- 2
- 130
new-cap: [2, { "capIsNewExceptions": ["Immutable"] }]
no-bitwise: 2
no-caller: 2
no-mixed-spaces-and-tabs: 2
no-multiple-empty-lines:
- error
- max: 1
no-trailing-spaces: 2
no-use-before-define:
- error
- functions: false
no-undef: 2
no-unused-vars: 2
no-var: 2
no-with: 2
object-shorthand: 2
object-curly-spacing:
- error
- always
one-var:
- error
- never
padding-line-between-statements:
- error
- blankLine: always
prev: block-like
next: "*"
quote-props:
- error
- as-needed
quotes:
- error
- single
- allowTemplateLiterals: true
semi:
- error
- always
space-before-blocks: 2
space-in-parens: 2
space-infix-ops: 2
space-unary-ops:
- error
- words: false
nonwords: false
vars-on-top: 2
wrap-iife: 2
yoda:
- error
- never