File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
// eslint.config.js
2
2
import eslint from '@eslint/js' ;
3
3
import wdnsConfig from '@wdns/eslint-config-wdns' ;
4
- import pluginVue from 'eslint-plugin-vue' ;
5
4
import tseslint from 'typescript-eslint' ;
6
5
import AutoImportJson from './.eslintrc-auto-import.json' with { type : 'json' } ;
7
- import vueTsEslintConfig from '@vue/eslint-config-typescript' ;
8
6
9
7
10
8
export default tseslint . config (
11
9
eslint . configs . recommended ,
12
10
...tseslint . configs . recommended ,
13
- ...pluginVue . configs [ 'flat/essential' ] ,
14
- ...vueTsEslintConfig ( ) ,
15
11
...wdnsConfig ,
16
12
{
17
13
ignores : [
@@ -29,7 +25,7 @@ export default tseslint.config(
29
25
sourceType : 'module' ,
30
26
parserOptions : {
31
27
parser : tseslint . parser ,
32
- project : './tsconfig.json' ,
28
+ project : [ './tsconfig.json' , './tsconfig.node.json' ] ,
33
29
extraFileExtensions : [ '.vue' ] ,
34
30
sourceType : 'module' ,
35
31
} ,
You can’t perform that action at this time.
0 commit comments