-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
.eslintrc.js
126 lines (126 loc) · 3.11 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
module.exports = {
root: true,
settings: {
react: {
version: "detect",
},
},
plugins: [
"import",
"react",
"react-native",
"prettier",
"react-hooks",
"jest",
"@typescript-eslint",
"promise",
"unused-imports",
],
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
],
ignorePatterns: ["**/*/*.test.*", "**/*/*.js", "*.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
project: "./tsconfig.json",
},
env: {
browser: true,
node: true,
es6: true,
"jest/globals": true,
},
rules: {
"max-len": ["error", 120],
"react-native/no-unused-styles": 0,
"react-native/split-platform-components": 0,
"react-native/no-inline-styles": 2,
"react-native/no-color-literals": 0,
"react-native/no-raw-text": 0,
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 2,
"@typescript-eslint/ban-ts-comment": 1,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"prefer-destructuring": 2,
"no-return-await": 0,
"require-await": 2,
"promise/always-return": 2,
"no-nested-ternary": 2,
"promise/no-return-wrap": 2,
"promise/param-names": 2,
"promise/catch-or-return": 2,
"promise/no-nesting": 2,
"promise/no-promise-in-callback": 2,
"promise/no-callback-in-promise": 2,
"promise/valid-params": 2,
"no-void": 2,
"import/namespace": 0,
"import/no-unresolved": 0,
"import/no-named-as-default": 0,
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"import/no-named-as-default-member": 0,
"import/no-extraneous-dependencies": 0,
"import/default": 0,
"import/no-cycle": 0,
"import/no-duplicates": 2,
"unused-imports/no-unused-imports": 2,
"unused-imports/no-unused-vars": 2,
"react/no-unstable-nested-components": ["error", { allowAsProps: true }],
"import/extensions": [
"error",
"never",
{
svg: "always",
model: "always",
style: "always",
png: "always",
jpg: "always",
json: "always",
jpeg: "always",
constant: "always",
},
],
"@typescript-eslint/no-floating-promises": [
2,
{
ignoreIIFE: true,
},
],
"react/jsx-filename-extension": [
1,
{
extensions: [".js", ".jsx", ".tsx", ".ts"],
},
],
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
},
overrides: [
{
files: ["**/*.tsx", "**/*.ts"],
rules: {
"react/prop-types": 0,
},
},
],
};