fix: add `unused-export-let` to legacy lint replacements (#11896)

Closes #11890
pull/11904/head
wackbyte 7 months ago committed by GitHub
parent 3acee5d246
commit 5ac6aa306f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: add `unused-export-let` to legacy lint replacements

@ -12,7 +12,8 @@ const replacements = {
'invalid-html-attribute': 'attribute_invalid_property_name',
'a11y-structure': 'a11y_figcaption_parent',
'illegal-attribute-character': 'attribute_illegal_colon',
'invalid-rest-eachblock-binding': 'bind_invalid_each_rest'
'invalid-rest-eachblock-binding': 'bind_invalid_each_rest',
'unused-export-let': 'export_let_unused'
};
/**

Loading…
Cancel
Save