fix: disable import/no-mutable-exports for svelte files
Some checks failed
javascript checks / check (macos) (push) Has been cancelled
javascript checks / check (ubuntu) (push) Has been cancelled
javascript checks / check (windows) (push) Has been cancelled
python checks / check (push) Has been cancelled
python checks / test (macos, 3.12) (push) Has been cancelled
python checks / test (macos, 3.13) (push) Has been cancelled
python checks / test (ubuntu, 3.12) (push) Has been cancelled
python checks / test (ubuntu, 3.13) (push) Has been cancelled
python checks / test (windows, 3.12) (push) Has been cancelled
python checks / test (windows, 3.13) (push) Has been cancelled
python checks / publish-hmr (push) Has been cancelled
spell check / typos (push) Has been cancelled
auto update dependencies / update (push) Has been cancelled
auto update dependencies / lint (push) Has been cancelled

This commit is contained in:
Muspi Merol
2025-06-21 01:47:25 +08:00
parent 2d754ad3bb
commit 18ef5057ac

View File

@@ -19,4 +19,9 @@ export default antfu({
"svelte/no-at-html-tags": "off",
"no-console": "warn",
},
overrides: {
svelte: {
"import/no-mutable-exports": "off",
},
},
});