8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b05f8be commit aef695bCopy full SHA for aef695b
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