From d754ed44a03849da4d82470edc8a795132ff26b9 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Tue, 8 Apr 2025 17:04:16 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- frontend/vitest.config.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts index 58c8ba0f..f5224465 100644 --- a/frontend/vitest.config.ts +++ b/frontend/vitest.config.ts @@ -13,7 +13,16 @@ export default mergeConfig( reporter: ["text", "json-summary", "json"], // If you want a coverage reports even if your tests are failing, include the reportOnFailure option reportOnFailure: true, - exclude: ["**/*config*", "**/tests/**", 'src/*.ts', 'src/*.vue', '**/dist/**', '**/e2e/**', '**/*config*', '**/node_modules/**'], + exclude: [ + "**/*config*", + "**/tests/**", + "src/*.ts", + "src/*.vue", + "**/dist/**", + "**/e2e/**", + "**/*config*", + "**/node_modules/**", + ], thresholds: { lines: 60, branches: 60,