-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yml
59 lines (58 loc) · 1.75 KB
/
index.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
extends:
- airbnb
- airbnb-typescript
- react-app
plugins:
- react
rules:
semi: [error, never]
no-constant-binary-expression: error
'@typescript-eslint/no-inferrable-types': error
'@typescript-eslint/semi': [error, never]
'@typescript-eslint/member-delimiter-style': [error, {
multiline: { delimiter: none },
singleline: { delimiter: comma }
}]
'@typescript-eslint/no-unnecessary-boolean-literal-compare': error
'@typescript-eslint/prefer-ts-expect-error': error
'@typescript-eslint/type-annotation-spacing': error
'@typescript-eslint/naming-convention': off
arrow-parens: [error, as-needed]
no-param-reassign: warn
'@typescript-eslint/camelcase': off
'@typescript-eslint/no-implied-eval': off
import/no-webpack-loader-syntax: off
import/prefer-default-export: off
camelcase: off
consistent-return: off
implicit-arrow-linebreak: off
max-classes-per-file: off
max-len: off
newline-per-chained-call: off
no-alert: off
no-await-in-loop: off
no-bitwise: off
no-console: off
no-continue: off
no-nested-ternary: off
no-new: off
no-plusplus: off
no-restricted-syntax: off
no-underscore-dangle: off
object-curly-newline: off
prefer-template: off
jsx-a11y/anchor-is-valid: off
jsx-a11y/click-events-have-key-events: off
jsx-a11y/control-has-associated-label: warn
jsx-a11y/label-has-associated-control: warn
jsx-a11y/media-has-caption: off
jsx-a11y/no-autofocus: off
jsx-a11y/no-noninteractive-element-interactions: warn
jsx-a11y/no-static-element-interactions: off
react/function-component-definition: off
react/jsx-key: warn
react/jsx-one-expression-per-line: off
react/jsx-props-no-spreading: off
react/no-array-index-key: off
react/prop-types: off
react/react-in-jsx-scope: off