Skip to content

Commit 6c35aba

Browse files
committed
fixup! fix: no need to turn off member-delimiter-style as it's auto-fixable
1 parent dc4be50 commit 6c35aba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/fixtures/default/src/shims-tsx.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ declare global {
77
// tslint:disable no-empty-interface
88
interface ElementClass extends Vue {}
99
interface IntrinsicElements {
10-
[elem: string]: any
10+
[elem: string]: any;
1111
}
1212
}
1313
}

test/fixtures/tsx-in-sfc/shims-tsx.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ declare global {
77
// tslint:disable no-empty-interface
88
interface ElementClass extends Vue {}
99
interface IntrinsicElements {
10-
[elem: string]: any
10+
[elem: string]: any;
1111
}
1212
}
1313
}

test/fixtures/tsx/shims-tsx.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ declare global {
77
// tslint:disable no-empty-interface
88
interface ElementClass extends Vue {}
99
interface IntrinsicElements {
10-
[elem: string]: any
10+
[elem: string]: any;
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)