We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unused-export-let
1 parent 3acee5d commit 5ac6aa3Copy full SHA for 5ac6aa3
.changeset/tidy-deers-hope.md
@@ -0,0 +1,5 @@
1
+---
2
+'svelte': patch
3
4
+
5
+fix: add `unused-export-let` to legacy lint replacements
packages/svelte/src/compiler/utils/extract_svelte_ignore.js
@@ -12,7 +12,8 @@ const replacements = {
12
'invalid-html-attribute': 'attribute_invalid_property_name',
13
'a11y-structure': 'a11y_figcaption_parent',
14
'illegal-attribute-character': 'attribute_illegal_colon',
15
- 'invalid-rest-eachblock-binding': 'bind_invalid_each_rest'
+ 'invalid-rest-eachblock-binding': 'bind_invalid_each_rest',
16
+ 'unused-export-let': 'export_let_unused'
17
};
18
19
/**
0 commit comments