-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
143 lines (129 loc) · 4.17 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
module.exports = {
'env': {
'browser': true,
'es2021': true
},
'extends': [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier'
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaFeatures': {
'tsx': true
},
'ecmaVersion': 12,
'sourceType': 'module'
},
'plugins': [
'react',
'react-hooks',
'@typescript-eslint',
'simple-import-sort'
],
'settings': {
'react': {
'version': 'detect'
},
},
'rules': {
'max-len': [0, {'code': 100}],
'indent': [1, 2, {'SwitchCase': 1}],
'linebreak-style': [
'error',
'unix'
],
'@typescript-eslint/quotes': 0,
'semi': 0,
'array-bracket-spacing': [
'error',
'never'
],
'no-undef': 0,
'no-case-declarations': 0,
'no-async-promise-executor': 0,
'no-empty': 0,
'no-mixed-spaces-and-tabs': 0, // disable rule
'@typescript-eslint/ban-ts-ignore': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-inferrable-types': 1,
'react/no-unescaped-entities': 0,
'react/prop-types': 0,
'react/no-children-prop': 0,
'react/jsx-key': 1,
'no-prototype-builtins': 0,
'no-extra-boolean-cast': 0,
'no-trailing-spaces': 'error',
'simple-import-sort/imports': 'warn',
'simple-import-sort/exports': 'warn',
'no-restricted-imports': ['error', {
'patterns': [ {
'group': ['.*', '..*', '!*.css'],
'message': 'Please don\'t use relative imports. Aim to use components/*, pages/*, etc paths from the root'
}]
}]
},
'overrides': [
{
'files': ['src/**/*.{js,jsx,ts,tsx}'],
'rules': {
'simple-import-sort/imports': [
'warn',
{
'groups': [
// Node.js builtins. You could also generate this regex if you use a `.js` config.
// For example: `^(${require("module").builtinModules.join("|")})(/|$)`
[
'^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)',
],
// Packages. `react` related packages come first.
['^react', '^@?\\w'],
// Side effect imports.
['^\\u0000'],
// external company imports
['^(@|@company|@ui|utils|config|vendored-lib)(/.*|$)'],
// Components
['^components/', '^@?\\w'],
// pages
['^pages', '^@?\\w'],
// lib/hooks
['^lib/hooks', '^@?\\w'],
// lib/types
['^lib/types', '^@?\\w'],
// lib/utils
['^lib/utils', '^@?\\w'],
// rest of lib
['^lib', '^@?\\w'],
// redux
['^redux', '^@?\\w'],
// assets
['^assets', '^@?\\w'],
// metaserver helpers
['^metaserver_helpers', '^@?\\w'],
// Parent imports. Put `..` last.
['^\\.\\.(?!/?$)', '^\\.\\./?$'],
// Other relative imports. Put same-folder imports and `.` last.
['^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
// Style imports.
['^.+\\.s?css$'],
],
},
],
},
},
{
'files': ['test-utils.tsx', '*.test.ts', '*test.tsx'],
'rules': {
'no-restricted-imports': 'off'
}
}
]
};