We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47921d commit 61da602Copy full SHA for 61da602
packages/eslint-plugin-svelte/src/rules/valid-compile.ts
@@ -4,13 +4,7 @@ import { getSvelteCompileWarnings } from '../shared/svelte-compile-warns/index.j
4
import { getSourceCode } from '../utils/compat.js';
5
import type { Position } from 'svelte-eslint-parser/lib/ast/common.js';
6
7
-const ignores: string[] = [
8
- 'missing-declaration',
9
- // Svelte v4
10
- 'dynamic-slot-name',
11
- // Svelte v5
12
- 'invalid-slot-name'
13
-] as const;
+const ignores: string[] = ['missing-declaration'] as const;
14
15
const unusedSelectorWarnings: string[] = ['css_unused_selector', 'css-unused-selector'] as const;
16
0 commit comments