From a947d5b3cff32104ee009113226feab45439dbdd Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Sat, 28 Jun 2025 09:55:15 +0200 Subject: [mod] theme/simple: improve fmt/lint tech This is one of various PR to refactor the simple theme internally. Replace eslint tool with Biome. I have been using this for quite some time, and it will help us to have more consistent and valid code without extending on other third party plugins. Removes unused dependencies. --- client/simple/vite.config.js | 7 ------- 1 file changed, 7 deletions(-) (limited to 'client/simple/vite.config.js') diff --git a/client/simple/vite.config.js b/client/simple/vite.config.js index f8d3e6757..850cc6168 100644 --- a/client/simple/vite.config.js +++ b/client/simple/vite.config.js @@ -4,7 +4,6 @@ import { resolve } from "node:path"; import { defineConfig } from "vite"; -import stylelint from "vite-plugin-stylelint"; import { viteStaticCopy } from "vite-plugin-static-copy"; import { plg_svg2png } from "./tools/plg.js"; import { plg_svg2svg } from "./tools/plg.js"; @@ -120,12 +119,6 @@ export default defineConfig({ plugins: [ - stylelint({ - build: true, - emitWarningAsError: true, - fix: true, - }), - // Leaflet viteStaticCopy({ -- cgit v1.2.3