-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
executable file
·53 lines (53 loc) · 1.61 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
{
"parser": "babel-eslint",
"rules": {
"react/jsx-filename-extension": "off",
"react/prop-types": "off",
"react/require-default-props": "off",
"react/no-danger": "off",
"react/no-array-index-key": "off",
"no-use-before-define": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": "off",
"react/prefer-stateless-function": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"max-len": "off",
"camelcase": "off",
"import/no-cycle": "off",
"no-underscore-dangle": "off",
"no-nested-ternary": "off",
"consistent-return": "off",
"no-alert": "off",
"object-curly-newline": "off",
"no-multi-spaces": "off",
"comma-dangle": "off",
"operator-linebreak": "off",
"no-confusing-arrow": "off",
"implicit-arrow-linebreak": "off",
"array-callback-return": "off",
"indent": "off",
"arrow-parens": "off",
"no-useless-escape": "off",
"no-else-return": "off",
"function-paren-newline": "off",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/anchor-is-valid": "off"
},
"globals": {
"window": "readonly",
"document": "readonly",
"performance": "readonly",
"localStorage": "readonly",
"sessionStorage": "readonly",
"fetch": "readonly",
"alert": "readonly",
"navigator": "readonly",
"IntersectionObserver": "readonly",
"domRef": "readonly"
}
}