You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// NOTE this rule only supported in SFC, Users of the unplugin-vue-define-options should disable that rule: https://github.com/vuejs/eslint-plugin-vue/issues/1886
150
-
// 'vue/no-duplicate-attr-inheritance': 'error',
166
+
'vue/no-duplicate-attr-inheritance': 'error',
151
167
'vue/no-empty-component-block': 'error',
152
168
'vue/no-multiple-objects-in-class': 'error',
153
169
'vue/no-reserved-component-names': 'error',
@@ -191,16 +207,16 @@ module.exports = {
191
207
message: 'Use \'@images\' path alias for image imports',
192
208
},
193
209
{
194
-
regex: '@/styles',
210
+
regex: '@/assets/styles',
195
211
replacement: '@styles',
196
-
message: 'Use \'@styles\' path alias for importing styles from \'src/styles\'',
212
+
message: 'Use \'@styles\' path alias for importing styles from \'src/assets/styles\'',
197
213
},
198
214
199
-
// {
200
-
// id: 'Disallow icon of icon library',
201
-
// regex: 'tabler-\\w',
202
-
// message: 'Only \'mdi\' icons are allowed',
203
-
// },
215
+
{
216
+
id: 'Disallow icon of icon library',
217
+
regex: 'tabler-\\w',
218
+
message: 'Only \'mdi\' icons are allowed',
219
+
},
204
220
205
221
{
206
222
regex: '@core/\\w',
@@ -216,25 +232,15 @@ module.exports = {
216
232
inspect: '^(?!.*(@core|@layouts)).*',
217
233
},
218
234
},
219
-
{
220
-
regex: 'import axios from \'axios\'',
221
-
replacement: 'import axios from \'@axios\'',
222
-
message: 'Use axios instances created in \'src/plugin/axios.ts\' instead of unconfigured axios',
0 commit comments