fix: tmp remove vite eslint plugin

This commit is contained in:
Valentin Kaelin 2023-09-20 22:18:51 +02:00
parent a533c21c8c
commit 00ae29f2ac
2 changed files with 7 additions and 10 deletions

View file

@ -1,12 +1,12 @@
import path from 'path' import path from 'path'
import eslint from 'vite-plugin-eslint' // import eslint from 'vite-plugin-eslint'
import vue from '@vitejs/plugin-vue2' import vue from '@vitejs/plugin-vue2'
export default { export default {
esbuild: { esbuild: {
drop: ['console', 'debugger'], drop: ['console', 'debugger'],
}, },
plugins: [eslint(), vue()], plugins: [vue()],
resolve: { resolve: {
alias: { alias: {
'@/': `${path.resolve(__dirname, 'src')}/`, '@/': `${path.resolve(__dirname, 'src')}/`,

View file

@ -1,19 +1,16 @@
{ {
"folders": [ "folders": [
{ {
"path": "client" "path": "client"
},
{
"path": "client-new"
}, },
{ {
"path": "server" "path": "server"
} }
], ],
"settings": { "settings": {
"editor.tabSize": 2, "editor.tabSize": 2,
"vetur.validation.style": false, "vetur.validation.style": false,
"headwind.prependCustomClasses": false, "headwind.prependCustomClasses": false
}, },
"extensions": { "extensions": {
"recommendations": [ "recommendations": [
@ -21,7 +18,7 @@
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"stylelint.vscode-stylelint", "stylelint.vscode-stylelint",
"heybourn.headwind", "heybourn.headwind",
"bradlc.vscode-tailwindcss", "bradlc.vscode-tailwindcss"
] ]
} }
} }