-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
91 lines (86 loc) · 2.14 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
79
80
81
82
83
84
85
86
{
"extends": [
"plugin:jest/recommended",
"plugin:react/recommended",
"standard",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "latest"
}
},
"rules": {
"arrow-parens":0,
"comma-dangle": "off",
"generator-star-spacing": 1,
"import/no-unresolved": "off",
"jest/valid-expect-in-promise": "off",
"jest/no-alias-methods": "off",
"jest/no-identical-title": "off",
"jest/valid-expect": "off",
"babel/new-cap": "off",
"indent": "off",
"no-await-in-loop": 1,
"no-empty-pattern": "off",
"no-extra-parens": "off",
"no-multiple-empty-lines": "off",
"no-undef": "off",
"no-unused-vars": "off",
"object-curly-spacing": "off",
"object-shorthand": 1,
"operator-linebreak": "off",
"quotes": "off",
"react/prop-types": "off",
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"semi": 0,
"sort-keys": ["error", "asc", {
"caseSensitive": false,
"natural": false
}],
"sort-imports": ["error", {
"ignoreCase": false,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}],
"space-before-function-paren": "off",
"standard/no-callback-literal": "off",
"strict": [
2,
"never"
],
"import/named": 2,
"import/namespace": 2,
"import/default": 2,
"import/export": 2,
"@typescript-eslint/interface-name-prefix": [2, "always"],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true,
"allowTypedFunctionExpressions": true
}
]
},
"plugins": [
"jest",
"react",
"react-hooks",
"jsx-a11y",
"@typescript-eslint"
]
}