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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
| import type { Linter } from 'eslint';
|
| const restrictedImportIgnores = [
| '**/vite.config.mts',
| '**/tailwind.config.mjs',
| '**/postcss.config.mjs',
| ];
|
| const customConfig: Linter.Config[] = [
| // shadcn-ui 内部组件是自动生成的,不做太多限制
| {
| files: ['packages/@core/ui-kit/shadcn-ui/**/**'],
| rules: {
| 'vue/require-default-prop': 'off',
| },
| },
| {
| files: [
| 'apps/**/**',
| 'packages/effects/**/**',
| 'packages/utils/**/**',
| 'packages/types/**/**',
| 'packages/locales/**/**',
| ],
| ignores: restrictedImportIgnores,
| rules: {
| 'perfectionist/sort-interfaces': 'off',
| 'perfectionist/sort-objects': 'off',
| },
| },
| {
| // apps内部的一些基础规则
| files: ['apps/**/**'],
| ignores: restrictedImportIgnores,
| rules: {
| // 允许使用void类型
| '@typescript-eslint/no-invalid-void-type': 'off',
| // 关闭 不允许使用console
| 'no-console': 'off',
| 'no-restricted-imports': [
| 'error',
| {
| patterns: [
| {
| group: ['#/api/*'],
| message:
| 'The #/api package cannot be imported, please use the @core package itself',
| },
| {
| group: ['#/layouts/*'],
| message:
| 'The #/layouts package cannot be imported, please use the @core package itself',
| },
| {
| group: ['#/locales/*'],
| message:
| 'The #/locales package cannot be imported, please use the @core package itself',
| },
| {
| group: ['#/stores/*'],
| message:
| 'The #/stores package cannot be imported, please use the @core package itself',
| },
| ],
| },
| ],
| 'perfectionist/sort-interfaces': 'off',
| },
| },
| {
| // @core内部组件,不能引入@vben/* 里面的包
| files: ['packages/@core/**/**'],
| ignores: restrictedImportIgnores,
| rules: {
| 'no-restricted-imports': [
| 'error',
| {
| patterns: [
| {
| group: ['@vben/*'],
| message:
| 'The @core package cannot import the @vben package, please use the @core package itself',
| },
| ],
| },
| ],
| },
| },
| {
| // @core/shared内部组件,不能引入@vben/* 或者 @vben-core/* 里面的包
| files: ['packages/@core/base/**/**'],
| ignores: restrictedImportIgnores,
| rules: {
| 'no-restricted-imports': [
| 'error',
| {
| patterns: [
| {
| group: ['@vben/*', '@vben-core/*'],
| message:
| 'The @vben-core/shared package cannot import the @vben package, please use the @core/shared package itself',
| },
| ],
| },
| ],
| },
| },
|
| {
| // 不能引入@vben/*里面的包
| files: [
| 'packages/types/**/**',
| 'packages/utils/**/**',
| 'packages/icons/**/**',
| 'packages/constants/**/**',
| 'packages/styles/**/**',
| 'packages/stores/**/**',
| 'packages/preferences/**/**',
| 'packages/locales/**/**',
| ],
| ignores: restrictedImportIgnores,
| rules: {
| 'no-restricted-imports': [
| 'error',
| {
| patterns: [
| {
| group: ['@vben/*'],
| message:
| 'The @vben package cannot be imported, please use the @core package itself',
| },
| ],
| },
| ],
| },
| },
| // 后端模拟代码,不需要太多规则
| {
| files: ['apps/backend-mock/**/**', 'docs/**/**'],
| rules: {
| '@typescript-eslint/no-extraneous-class': 'off',
| 'n/no-extraneous-import': 'off',
| 'n/prefer-global/buffer': 'off',
| 'n/prefer-global/process': 'off',
| 'no-console': 'off',
| 'unicorn/prefer-module': 'off',
| },
| },
| {
| files: ['**/**/playwright.config.ts'],
| rules: {
| 'n/prefer-global/buffer': 'off',
| 'n/prefer-global/process': 'off',
| 'no-console': 'off',
| },
| },
| {
| files: ['internal/**/**', 'scripts/**/**'],
| rules: {
| 'no-console': 'off',
| },
| },
| ];
|
| export { customConfig };
|
|