We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c159bfa commit 884eef3Copy full SHA for 884eef3
tests/src/rules/indent.ts
@@ -33,6 +33,15 @@ describe("use @typescript-eslint/parser@4", () => {
33
rule as any,
34
loadTestCases("indent", {
35
filter(filename) {
36
+ if (
37
+ filename.endsWith("ts-class03-input.svelte") ||
38
+ filename.endsWith("ts-decorator01-input.svelte") ||
39
+ filename.endsWith("ts-decorator02-input.svelte")
40
+ ) {
41
+ // Decorator nodes in ts4.8 are incompatible.
42
+ return false
43
+ }
44
+
45
return path.basename(path.dirname(filename)) === "ts"
46
},
47
}),
0 commit comments