Skip to content

Commit 61da602

Browse files
committed
ignore dynamic-slot-name
1 parent b47921d commit 61da602

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/eslint-plugin-svelte/src/rules/valid-compile.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ import { getSvelteCompileWarnings } from '../shared/svelte-compile-warns/index.j
44
import { getSourceCode } from '../utils/compat.js';
55
import type { Position } from 'svelte-eslint-parser/lib/ast/common.js';
66

7-
const ignores: string[] = [
8-
'missing-declaration',
9-
// Svelte v4
10-
'dynamic-slot-name',
11-
// Svelte v5
12-
'invalid-slot-name'
13-
] as const;
7+
const ignores: string[] = ['missing-declaration'] as const;
148

159
const unusedSelectorWarnings: string[] = ['css_unused_selector', 'css-unused-selector'] as const;
1610

0 commit comments

Comments
 (0)