style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-08 17:04:16 +00:00
parent 14c52046fc
commit d754ed44a0

View file

@ -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,