-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
46 lines (44 loc) · 1.1 KB
/
eslint.config.mjs
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
import vuePrettierEslintConfigSkipFormatting from "@vue/eslint-config-prettier/skip-formatting";
import vueTsEslintConfig from "@vue/eslint-config-typescript";
import pluginVue from "eslint-plugin-vue";
import vuetify from "eslint-plugin-vuetify";
export default [
...pluginVue.configs["flat/base"],
...vueTsEslintConfig({
extends: [
// By default, only the recommended rules are enabled.
"recommended",
],
...vuetify.configs["flat/base"],
...vuePrettierEslintConfigSkipFormatting,
}),
{
ignores: [
"dist",
"dist-demo",
"target",
"coverage",
"node_modules",
"env.d.ts",
"src/vite-env.d.ts",
],
},
];
// export default defineConfigWithVueTs(
// // ...ESLint.defaultConfig,
// // js.configs.recommended,
// ...pluginVue.configs["flat/recommended"],
// vuetify.configs["flat/base"],
// vueTsConfigs.recommended,
// vuePrettierEslintConfigSkipFormatting,
// {
// ignores: [
// "dist",
// "dist-demo",
// "target",
// "coverage",
// "node_modules",
// "env.d.ts",
// ],
// }
// );