-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
33 lines (33 loc) · 882 Bytes
/
.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
module.exports = {
extends: ['react-app', 'react-app/jest'],
plugins: ['simple-import-sort'],
rules: {
'simple-import-sort/imports': [
1,
{
groups: [
// Side effect imports.
['^\\u0000'],
// Packages. `react` related packages come first.
['^react', '^@?\\w'],
// Internal packages.
// Absolute imports and other imports such as `@/foo`.
// Anything that does not start with a dot.
[
'^(api)(/.*|$)',
'^(constants)(/.*|$)',
'^(utils)(/.*|$)',
'^(hooks)(/.*|$)',
'^(assets)(/.*|$)',
'^(components)(/.*|$)',
'^(test)(/.*|$)',
'^[^.]',
],
// Relative imports.
// Anything that starts with a dot.
['^\\.'],
],
},
],
},
}