-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.js
131 lines (131 loc) · 3.04 KB
/
.eslintrc.js
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
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2021,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
env: {
browser: true,
es2021: true,
"jest/globals": true,
"react-native/react-native": true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
plugins: [
"react",
"react-native",
"prettier",
"react-hooks",
"jest",
"@typescript-eslint",
"promise",
"unused-imports",
"import",
],
settings: {
react: {
version: "detect",
},
"import/resolver": {
node: {
extensions: [
".js",
".jsx",
".ts",
".tsx",
".d.ts",
".android.js",
".android.jsx",
".android.ts",
".android.tsx",
".ios.js",
".ios.jsx",
".ios.ts",
".ios.tsx",
".web.js",
".web.jsx",
".web.ts",
".web.tsx",
],
},
},
},
ignorePatterns: [
"**/*/*.js",
"*.js",
"*.svg",
"*.json",
"*.png",
"package.json",
"package-lock.json",
],
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
quotes: [
"error",
"double",
{
avoidEscape: true,
},
],
"max-len": ["error", 120],
"no-useless-catch": "off",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"react/jsx-filename-extension": ["error", { extensions: [".tsx"] }],
"react-native/no-unused-styles": "error",
"react-native/split-platform-components": "error",
"react-native/no-inline-styles": "off",
"react-native/no-color-literals": "off",
"react-native/no-raw-text": "off",
"import/extensions": [
"error",
"never",
{
svg: "always",
model: "always",
style: "always",
png: "always",
jpg: "always",
json: "always",
constant: "always",
},
],
"import/no-extraneous-dependencies": "error",
"import/no-named-as-default-member": "error",
"import/no-duplicates": "error",
"import/no-useless-path-segments": "error",
"import/no-cycle": "error",
"import/prefer-default-export": "off",
"import/no-anonymous-default-export": "off",
"import/named": "off",
"import/namespace": "off",
"import/default": "off",
"import/no-named-as-default": "off",
"import/no-unused-modules": "off",
"import/no-deprecated": "off",
"@typescript-eslint/indent": "off",
"react-hooks/rules-of-hooks": "error",
camelcase: "error",
"prefer-destructuring": "error",
"no-nested-ternary": "error",
},
};