-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
123 lines (123 loc) · 3.62 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
module.exports = {
root: true,
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:react-native-a11y/all",
"prettier",
"plugin:storybook/recommended"
],
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
ecmaFeatures: {
jsx: true
}
},
plugins: [
"@typescript-eslint",
"react",
"react-native",
"react-hooks",
"import",
"functional"
],
rules: {
"no-case-declarations": "off",
"no-inner-declarations": "off",
"prefer-const": "error",
curly: "error",
"spaced-comment": ["error", "always", { block: { balanced: true } }],
radix: "error",
"one-var": ["error", "never"],
"object-shorthand": "error",
"no-var": "error",
"no-param-reassign": "error",
"no-underscore-dangle": "error",
"no-undef-init": "error",
"no-throw-literal": "error",
"no-new-wrappers": "error",
"no-eval": "error",
"no-console": "error",
"no-caller": "error",
"no-bitwise": "error",
"no-duplicate-imports": "error",
eqeqeq: ["error", "smart"],
"max-classes-per-file": ["error", 1],
"guard-for-in": "error",
complexity: "error",
"arrow-body-style": "error",
"import/order": "error",
"@typescript-eslint/no-unused-vars": "off",
// Enable if we want to enforce the return type for all the functions
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-inferrable-types": "off",
// TODO: added for compatibility. Removing this line we have to remove all the any usage in the code
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/array-type": [
"error",
{
default: "generic"
}
],
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/member-delimiter-style": [
"error",
{
multiline: {
delimiter: "semi",
requireLast: true
},
singleline: {
delimiter: "semi",
requireLast: false
}
}
],
"@typescript-eslint/no-floating-promises": "error",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": ["error"],
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/restrict-plus-operands": "error",
semi: "off",
"@typescript-eslint/semi": ["error"],
"@typescript-eslint/unified-signatures": "error",
"react/prop-types": "off",
"react/display-name": "off",
"react/jsx-key": "error",
"react/jsx-no-bind": ["error", { allowArrowFunctions: true }],
"functional/no-let": "error",
"functional/immutable-data": "error",
"react-native/no-unused-styles": "error",
"react-native/split-platform-components": "off",
"react-native/no-inline-styles": "off",
"react-native/no-color-literals": "error",
"react-native/no-raw-text":
"off" /* Error when you launch the lint command */,
"react-native/no-single-element-style-arrays": "warn",
/* Too much verbose. It also requires a lot of effort in the main repo */
"react-native-a11y/has-accessibility-hint": "off"
},
env: {
"react-native/react-native": true
},
overrides: [
{
files: ["**/*.test.*"],
rules: {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
],
settings: {
react: {
version: "detect"
}
}
};