-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
101 lines (97 loc) · 2.52 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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-native/all',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:import/recommended',
'plugin:import/typescript',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
typescript: {},
},
'import/ignore': ['node_modules/react-native/index\\.js$'],
},
plugins: ['react', 'react-native', '@typescript-eslint'],
rules: {
// eslint
'no-empty-pattern': 'off',
'prefer-const': 'off',
'no-constant-condition': 'off',
'no-empty': 'off',
'no-unused-vars': 'off',
'object-shorthand': ['warn', 'always'],
// react
'react/prop-types': 'off',
'react/display-name': 'off',
'react/no-unescaped-entities': 'off',
// react-native
'react-native/no-raw-text': 'off',
'react-native/no-inline-styles': 'off',
'react-native/no-color-literals': 'off',
'react-native/no-unused-styles': 'off',
'react-native/sort-styles': 'off',
'react-native/split-platform-components': 'off',
// typescript
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
},
],
// import
'import/no-named-as-default': 'off',
'import/no-named-as-default-member': 'off',
'import/order': [
'warn',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling'],
pathGroups: [
{
pattern: 'react',
group: 'builtin',
},
{
pattern: 'react-native',
group: 'builtin',
},
{
pattern: '~/**',
group: 'internal',
position: 'after',
},
],
'newlines-between': 'always',
pathGroupsExcludedImportTypes: ['builtin'],
alphabetize: {
order: 'asc',
},
},
],
},
};