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 9abbe19 commit 4a2605bCopy full SHA for 4a2605b
packages/language-server/src/plugins/svelte/features/getCodeActions/getQuickfixes.ts
@@ -80,7 +80,11 @@ export function isIgnorableSvelteDiagnostic(diagnostic: Diagnostic) {
80
severity !== DiagnosticSeverity.Error
81
);
82
}
83
-const nonIgnorableWarnings = ['missing-custom-element-compile-options'];
+const nonIgnorableWarnings = [
84
+ 'missing-custom-element-compile-options',
85
+ 'unused-export-let',
86
+ 'css-unused-selector'
87
+];
88
89
async function getSvelteIgnoreEdit(svelteDoc: SvelteDocument, ast: Ast, diagnostic: Diagnostic) {
90
const {
0 commit comments