-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc.js
141 lines (140 loc) · 3.53 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
132
133
134
135
136
137
138
139
140
141
module.exports = {
env: {
es6: true,
node: false,
jest: true,
'react-native/react-native': true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.eslint.json',
ecmaFeatures: {
jsx: true,
},
},
plugins: [
'@typescript-eslint',
'prettier',
'jest',
'import',
'react-hooks',
'react',
'react-native',
],
extends: [
'airbnb',
'airbnb-typescript',
'airbnb/hooks',
'@react-native-community',
'eslint:recommended',
'plugin:react/recommended',
'plugin:import/recommended',
'plugin:i18n-json/recommended',
'plugin:react-hooks/recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'prettier/@typescript-eslint',
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
extensions: ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
typescript: {},
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
react: {
createClass: 'createReactClass',
pragma: 'React',
version: 'detect',
},
'import/ignore': ['node_modules'],
},
rules: {
'react/function-component-definition': 0,
'react/destructuring-assignment': 0,
'react-hooks/exhaustive-deps': 2,
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'default',
format: ['camelCase', 'UPPER_CASE', 'PascalCase', 'snake_case'],
leadingUnderscore: 'allow',
},
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE', 'PascalCase', 'snake_case'],
leadingUnderscore: 'allow',
},
{
selector: 'typeLike',
format: ['camelCase', 'UPPER_CASE', 'PascalCase', 'snake_case'],
leadingUnderscore: 'allow',
},
{
selector: 'enumMember',
format: ['camelCase', 'UPPER_CASE', 'PascalCase', 'snake_case'],
leadingUnderscore: 'allow',
},
],
'no-use-before-define': 'off',
'no-shadow': 'off',
'global-require': 'off',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-use-before-define': 'off',
'no-console': 2,
'no-param-reassign': 0,
'import/prefer-default-export': 0,
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-explicit-any': 0,
'implicit-arrow-linebreak': 0,
'import/no-named-default': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/ban-ts-comment': 0,
'react/jsx-props-no-spreading': 0,
'react/jsx-filename-extension': [1, {extensions: ['.tsx', '.jsx']}],
'no-alert': 0,
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'import/no-extraneous-dependencies': ['error', {devDependencies: true}],
'react/jsx-curly-newline': 0,
'react/require-default-props': 0,
'import/no-cycle': 2,
'import/no-unresolved': 'error',
},
ignorePatterns: [
'android/',
'ios/',
'lib/',
'__setups__/',
'__mocks__/',
'coverage/',
'scripts/',
'**/e2e/*.js',
'node_modules/',
'.eslintrc.js',
'.prettierrc.js',
'babel.config.js',
'react-native-config.js',
'index.js',
'jest.setup.js',
'reload.js',
'ReactotronConfig.ts',
'commitlint.config.js',
'jest.config.js',
'metro.config.js',
],
};