-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
128 lines (121 loc) · 2.99 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
const modules = ['tests', 'hooks', 'components', 'static', 'utils', 'pages', 'theme', 'views']
const assets = ['^.+\\.css$', '^assets', '^static', '^public']
const dependencies = [
// React package - types
'^react\\u0000$',
// Dependencies - types
`^(?!${modules.join('|')})@?\\w.*\\u0000$`,
// Side effect
'^\\u0000',
// React package
'^react$',
// Dependencies
`^(?!${modules.join('|')})@?\\w`,
]
const internalModules = [...modules.slice(1)].map(module => `^${module}`)
const internalModulesTypes = [...internalModules].map(
internalModule => `${internalModule}.*\\u0000$`
)
const internal = [
// First category
...internalModulesTypes,
// Second category
...internalModules,
]
const relatives = [
// Parent imports. Put `..` last.
'^\\.\\.(?!/?$).*\\u0000$',
'^\\.\\./?$.*\\u0000$',
'^\\.\\.(?!/?$)',
'^\\.\\./?$',
// Other relative imports. Put same-folder imports and `.` last.
'^\\./(?=.*/)(?!/?$).*\\u0000$',
'^\\.(?!/?$).*\\u0000$',
'^\\./?$.*\\u0000$',
'^\\./(?=.*/)(?!/?$)',
'^\\.(?!/?$)',
'^\\./?$',
]
const groups = [
// First group
assets,
// Second group
dependencies,
// Third group
internal,
// Fourth group
relatives,
]
module.exports = {
plugins: ['filename-rules', 'simple-import-sort'],
extends: [
'plugin:storybook/recommended',
'eslint:recommended',
'plugin:jsx-a11y/recommended',
'plugin:react/recommended',
'plugin:prettier/recommended',
'next',
],
overrides: [
{
files: ['*.js', '*.jsx'],
parserOptions: {
project: ['./jsconfig.json'],
},
},
],
env: {
node: true,
browser: true,
jest: true,
},
settings: {
react: {
version: 'detect',
},
},
rules: {
// storybook
'storybook/default-exports': 'off',
// eslint
'object-curly-spacing': ['warn', 'always'],
'max-len': [
'warn',
{
code: 100,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreComments: true,
},
],
'max-params': ['error', 3],
'no-use-before-define': [
'error',
{
functions: false,
classes: true,
variables: true,
},
],
'no-restricted-exports': 'off',
'no-unused-vars': 'warn',
'import/prefer-default-export': 'off',
// Filename rules
'filename-rules/match': [2, 'kebab-case'],
// React eslint
'react/jsx-filename-extension': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-boolean-value': 'off',
'react/prop-no-use-before-define': 'off',
'react/no-unescaped-entities': 'off',
'react/jsx-one-expression-per-line': 'off',
'react/jsx-wrap-multilines': 'off',
'react/destructuring-assignment': 'off',
// https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html#eslint
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'react/jsx-no-constructed-context-values': 'off',
// import
'simple-import-sort/imports': ['error', { groups }],
},
}