-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
147 lines (147 loc) · 3.65 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
142
143
144
145
146
147
module.exports = {
env: {
browser: true,
es6: true,
jest: true,
},
extends: [
'eslint:recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended',
'plugin:prettier/recommended',
// '@react-native-community',
'prettier',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
ignorePatterns: ['dist', 'node_modules'],
overrides: [
{
extends: ['plugin:@typescript-eslint/recommended-requiring-type-checking'],
files: ['.ts', '.tsx'],
},
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.eslint.json'],
tsconfigRootDir: __dirname,
},
plugins: [
'jest',
'import',
'react',
'react-hooks',
'react-native',
'simple-import-sort',
'@typescript-eslint',
'prettier',
],
rules: {
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/no-namespace': 'warn',
// '@typescript-eslint/no-undefined': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/no-use-before-define': [
'error',
{
functions: false,
classes: false,
variables: false,
allowNamedExports: false,
},
],
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-unresolved': ['error', { commonjs: true }],
'import/no-extraneous-dependencies': 'error',
'import/order': [
'error',
{
groups: [['internal', 'builtin'], 'external', ['sibling', 'parent'], 'object', 'index'],
pathGroups: [
{
pattern: '@(react|react-native)',
group: 'internal',
position: 'before',
},
{
pattern: '~assets/**',
group: 'external',
},
{
pattern: '~components/**',
group: 'external',
},
{
pattern: '~data/**',
group: 'external',
},
{
pattern: '~constants/**',
group: 'external',
},
{
pattern: '~hooks/**',
group: 'external',
},
{
pattern: '~navigation/**',
group: 'external',
},
{
pattern: '~screens/**',
group: 'external',
},
{
pattern: '~types/**',
group: 'external',
},
],
pathGroupsExcludedImportTypes: ['internal', 'react'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
'no-extra-semi': ['error'],
'no-unused-vars': ['warn'],
'no-undef': ['warn'],
'prettier/prettier': 'error',
'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'react-native/no-inline-styles': 'off',
'react-native/no-color-literals': 'off',
semi: [
'error',
'always',
{
omitLastInOneLineBlock: false,
},
],
'sort-imports': ['error', { ignoreCase: true, ignoreDeclarationSort: true }],
},
settings: {
'import/resolver': {
typescript: true,
node: true,
},
react: {
version: 'detect',
},
},
};