forked from tamagui/tamagui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
43 lines (43 loc) · 1.29 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
module.exports = {
parser: '@typescript-eslint/parser',
env: {
es2021: true,
browser: true,
node: true,
},
plugins: ['@typescript-eslint', 'react-hooks'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'no-console': 'error',
'react-hooks/exhaustive-deps': 'off',
'no-inner-declarations': 'off',
'react/prop-types': 'off',
'react/display-name': 'off',
'react/jsx-key': ['warn', { checkFragmentShorthand: true, checkKeyMustBeforeSpread: true }],
'no-empty-pattern': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'react/no-unescaped-entities': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'no-extra-boolean-cast': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/ban-types': 'off',
'prefer-rest-params': 'off',
'@typescript-eslint/no-var-requires': 'off',
'react-hooks/rules-of-hooks': 'off',
'no-constant-condition': 'off',
'@typescript-eslint/no-empty-function': 'off',
'react/react-in-jsx-scope': 'off',
},
settings: {
react: {
pragma: 'React',
version: 'detect',
},
},
}