-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
85 lines (85 loc) · 1.6 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react",
"react-native",
"react-hooks"
],
"settings": {
"import/resolver": {
"babel-modules": {
"allowExistingDirectories": true
}
}
},
"overrides": [
{
"files": [
"**/*.tsx"
],
"rules": {
"react/prop-types": "off"
}
}
],
"env": {
"es6": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-native/all"
],
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"computed-property-spacing": [
"error",
"always"
],
"import/no-unresolved": 0,
"object-curly-spacing": [
"error",
"always"
],
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
],
"react/jsx-filename-extension": 0,
"react/sort-comp": 0,
"react/jsx-props-no-spreading": 0,
"react/prefer-stateless-function": 1,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"semi": [
"error",
"never"
],
"space-in-parens": [
"error",
"always",
{
"exceptions": [
"empty"
]
}
],
"react/display-name": 0,
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-explicit-any": 0
}
}