File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ module.exports = defineConfig({
89
89
{ prefer : 'type-imports' }
90
90
] ,
91
91
92
+ 'import/no-duplicates' : 'error' ,
92
93
'import/order' : 'error' ,
93
94
'sort-imports' : [
94
95
'error' ,
Original file line number Diff line number Diff line change 1
1
import fs from 'fs'
2
2
import type { Plugin , ViteDevServer } from 'vite'
3
3
import { createFilter } from '@rollup/pluginutils'
4
+ /* eslint-disable import/no-duplicates */
4
5
import type {
5
6
SFCBlock ,
6
7
SFCScriptCompileOptions ,
7
8
SFCStyleCompileOptions ,
8
9
SFCTemplateCompileOptions
9
10
} from 'vue/compiler-sfc'
10
11
import type * as _compiler from 'vue/compiler-sfc'
12
+ /* eslint-enable import/no-duplicates */
11
13
import { resolveCompiler } from './compiler'
12
14
import { parseVueRequest } from './utils/query'
13
15
import { getDescriptor , getSrcDescriptor } from './utils/descriptorCache'
You can’t perform that action at this time.
0 commit comments