Skip to content

Commit e09906f

Browse files
committed
Linting again
1 parent 35863cc commit e09906f

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

.codacy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ engines:
5454

5555
# Global exclude patterns
5656
exclude_patterns:
57+
# Configuration files - MUST be excluded first
58+
- 'vite.config.ts'
59+
- 'vite.config.js'
60+
- 'vitest.config.ts'
61+
- '*.config.ts'
62+
- '*.config.js'
63+
5764
# Dependencies and build artifacts
5865
- 'node_modules/**'
5966
- 'dist/**'

test/components/VTour.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ describe('VTour Component - Comprehensive Test Suite', () => {
442442
// Trigger backdrop update
443443
wrapper.vm.currentStepIndex = 0;
444444
await nextTick();
445-
445+
446446
wrapper.vm.updateBackdrop();
447447
await nextTick();
448448

@@ -469,7 +469,7 @@ describe('VTour Component - Comprehensive Test Suite', () => {
469469

470470
wrapper.vm.currentStepIndex = 0;
471471
await nextTick();
472-
472+
473473
wrapper.vm.updateBackdrop();
474474
await nextTick();
475475

@@ -496,7 +496,7 @@ describe('VTour Component - Comprehensive Test Suite', () => {
496496

497497
wrapper.vm.currentStepIndex = 0;
498498
await nextTick();
499-
499+
500500
wrapper.vm.updateBackdrop();
501501
await nextTick();
502502

vite.config.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { resolve } from 'path';
22
import { defineConfig, type Plugin } from 'vite';
3-
import dtsPlugin, { type PluginOptions as DtsPluginOptions } from 'vite-plugin-dts';
3+
import dtsPlugin, {
4+
type PluginOptions as DtsPluginOptions,
5+
} from 'vite-plugin-dts';
46
import vue from '@vitejs/plugin-vue';
57

68
const dtsOptions: DtsPluginOptions = {
@@ -35,10 +37,7 @@ export default defineConfig({
3537
sourcemap: true,
3638
target: 'es2020',
3739
},
38-
plugins: [
39-
vue(),
40-
(dtsPlugin(dtsOptions) as Plugin),
41-
],
40+
plugins: [vue(), dtsPlugin(dtsOptions) as Plugin],
4241
server: {
4342
open: true,
4443
port: 3000,

0 commit comments

Comments
 (0)