-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
54 lines (54 loc) · 1.54 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
module.exports = {
root: true,
parserOptions: {
sourceType: 'module',
ecmaVersion: 'latest',
},
plugins: ['import', 'simple-import-sort'],
extends: ['@react-native'],
rules: {
'react-hooks/exhaustive-deps': 'error',
'simple-import-sort/imports': [
'error',
{
groups: [
// Packages. `react` related packages come first.
['^react', '^@?\\w'],
// Internal packages.
['^(components|state|screens|shared|sagas)(/.*|$)'],
// Side effect imports.
['^\\u0000'],
// Node.js builtins prefixed with `node:`.
['^node:'],
// Packages.
// Things that start with a letter (or digit or underscore), or `@` followed by a letter.
['^@?\\w'],
// Absolute imports and other imports such as Vue-style `@/foo`.
// Anything not matched in another group.
['^'],
// Relative imports.
// Anything that starts with a dot.
['^\\.'],
],
},
],
'simple-import-sort/exports': 'error',
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-duplicates': 'error',
},
settings: {
'import/resolver': {
'eslint-import-resolver-custom-alias': {
alias: {
components: './src/components',
sagas: './src/sagas',
screens: './src/screens',
shared: './src/shared',
state: './src/state',
},
extensions: ['.js', '.ts', '.tsx', '.jsx'],
},
},
},
};