-
Notifications
You must be signed in to change notification settings - Fork 47
/
.eslintrc
133 lines (133 loc) · 4.82 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
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
132
133
{
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["react", "react-native", "react-hooks", "prettier"],
"extends": [
"plugin:react/recommended",
"plugin:react-native/all",
"plugin:react-hooks/recommended",
"airbnb",
"airbnb-typescript",
"prettier"
],
"ignorePatterns": ["/*.config.js", "*.json", "jest.setup.js"],
"overrides": [
// Js and Typescript files
{
"files": [".js", "*.ts", "*.tsx"],
"rules": {
"import/no-default-export": "warn",
"curly": ["error", "all"],
"brace-style": ["error", "1tbs"],
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"react-native/no-inline-styles": "warn",
"react-native/no-color-literals": "warn",
"react/display-name": "off",
"react-native/no-raw-text": "warn",
"@typescript-eslint/indent": "off",
"react/prop-types": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-floating-promises": "off",
"no-console": "error",
// Off due to migration from Standard to Prettier
"consistent-return": "off",
"default-case": "warn",
"arrow-body-style": "off",
"@typescript-eslint/no-use-before-define": "off",
"react/destructuring-assignment": "off",
"@typescript-eslint/no-shadow": "off",
"react/jsx-no-constructed-context-values": "off",
"object-shorthand": "off",
"react/jsx-no-useless-fragment": "off",
"import/prefer-default-export": "off",
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",
"@typescript-eslint/return-await": "off",
"no-param-reassign": "off",
"@typescript-eslint/naming-convention": "off",
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"import/no-useless-path-segments": "off",
"operator-assignment": "off",
"prefer-destructuring": "off",
"no-else-return": "off",
"react/jsx-no-bind": "off",
"import/no-cycle": "off",
"react/no-array-index-key": "off",
"react/no-unused-prop-types": "warn",
"react/no-unstable-nested-components": "off",
"@typescript-eslint/default-param-last": "off",
"no-plusplus": "off",
"radix": "off",
"@typescript-eslint/no-unused-expressions": "error",
"react/no-unescaped-entities": "off",
"no-void": "off",
"no-restricted-globals": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-nested-ternary": "off",
"no-await-in-loop": "off",
"import/no-extraneous-dependencies": "off",
"no-unsafe-optional-chaining": "off"
},
"excludedFiles": ["*.test.ts", "*.test.tsx"]
},
// Unit test files
{
"files": ["*.test.ts", "*.test.tsx"],
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"],
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
// Off due to migration from Standard to Prettier
"consistent-return": "off",
"default-case": "off",
"arrow-body-style": "off",
"@typescript-eslint/no-use-before-define": "off",
"react/destructuring-assignment": "off",
"import/newline-after-import": "off",
"@typescript-eslint/no-shadow": "off",
"react/jsx-no-constructed-context-values": "off",
"object-shorthand": "off",
"react/jsx-no-useless-fragment": "off",
"import/prefer-default-export": "off",
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",
"@typescript-eslint/return-await": "off",
"no-param-reassign": "off",
"@typescript-eslint/naming-convention": "off",
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"import/no-useless-path-segments": "off",
"operator-assignment": "off",
"prefer-destructuring": "off",
"no-else-return": "off",
"react/jsx-no-bind": "off",
"import/no-cycle": "off",
"react/no-array-index-key": "off",
"react/no-unused-prop-types": "error",
"react/no-unstable-nested-components": "off",
"@typescript-eslint/default-param-last": "off",
"no-plusplus": "off",
"radix": "off",
"@typescript-eslint/no-unused-expressions": "error",
"react/no-unescaped-entities": "off",
"no-void": "off",
"no-restricted-globals": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-nested-ternary": "off",
"no-await-in-loop": "off",
"import/no-extraneous-dependencies": "off",
"no-promise-executor-return": "off"
}
}
]
}