From a7456d599bb671576fd642e0ea8d8f9b333b204e Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 25 Oct 2025 09:38:47 +0200 Subject: [PATCH] Fix coding style in vite config file --- package.json | 2 +- vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cc4fc080..6ffb8397 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "license": "MIT", "type": "module", "scripts": { - "lint": "eslint src test config/test", + "lint": "eslint src test config/test *.config.{js,ts}", "lint:fix": "node --run lint -- --fix", "types": "tsc", "start": "vite serve --host=0.0.0.0", diff --git a/vite.config.ts b/vite.config.ts index 4bfdb005..70112142 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,11 +1,11 @@ import tailwindcss from '@tailwindcss/vite'; import react from '@vitejs/plugin-react'; +import { playwright } from '@vitest/browser-playwright'; import { resolve } from 'path'; import { VitePWA } from 'vite-plugin-pwa'; import { defineConfig } from 'vitest/config'; import { manifest } from './manifest'; import pack from './package.json' with { type: 'json' }; -import { playwright } from '@vitest/browser-playwright'; const DEFAULT_NODE_VERSION = 'v22.10.0'; const nodeVersion = process.version ?? DEFAULT_NODE_VERSION;