File tree Expand file tree Collapse file tree 3 files changed +26
-10
lines changed
Expand file tree Collapse file tree 3 files changed +26
-10
lines changed Original file line number Diff line number Diff line change 1010 },
1111 "linter" : {
1212 "enabled" : true ,
13- "rules" : { "recommended" : true , "nursery" : { "useSortedClasses" : " error " } }
13+ "rules" : { "recommended" : true }
1414 },
1515 "javascript" : {
1616 "formatter" : {
2727 "assist" : {
2828 "enabled" : true ,
2929 "actions" : { "source" : { "organizeImports" : " on" } }
30- }
30+ },
31+ "overrides" : [
32+ {
33+ "includes" : [" **/*.svelte" , " **/*.astro" , " **/*.vue" ],
34+ "linter" : {
35+ "rules" : {
36+ "style" : {
37+ "useConst" : " off" ,
38+ "useImportType" : " off"
39+ },
40+ "correctness" : {
41+ "noUnusedVariables" : " off" ,
42+ "noUnusedImports" : " off"
43+ }
44+ }
45+ }
46+ }
47+ ]
3148}
Original file line number Diff line number Diff line change 11import { createApp } from "vue"
22import App from "./App.vue"
33import "./style.css"
4+ import { createVfm } from "vue-final-modal"
45import router from "./router"
56import { loadConfig as initConfig } from "./systems/config"
67import { initDb } from "./systems/db/db"
78import { initDownload } from "./systems/download/download"
8- import { initMedia } from "./systems/player/playlist"
99import { i18n , initI18n } from "./systems/i18n"
10- import { createVfm } from "vue-final-modal "
10+ import { initMedia } from "./systems/player/playlist "
1111
1212async function initApp ( ) {
1313 // load systems
Original file line number Diff line number Diff line change 1- import { defineConfig } from "vite"
2- import vue from "@vitejs/plugin-vue"
1+ import path from "node:path"
32import tailwindcss from "@tailwindcss/vite"
3+ import vue from "@vitejs/plugin-vue"
4+ import IconsResolver from "unplugin-icons/resolver"
45import Icons from "unplugin-icons/vite"
56import Components from "unplugin-vue-components/vite"
6- import IconsResolver from "unplugin-icons/resolver"
7-
8- import path from "path"
7+ import { defineConfig } from "vite"
98
109const host = process . env . TAURI_DEV_HOST
1110
1211// https://vite.dev/config/
13- export default defineConfig ( async ( { command } ) => ( {
12+ export default defineConfig ( async ( ) => ( {
1413 plugins : [
1514 vue ( ) ,
1615 tailwindcss ( ) ,
You can’t perform that action at this time.
0 commit comments