You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to configure ESLint to ignore the label $m: declaration? Right now, I get a '$m:' is defined but never used.no-unused-labels error. I know I could silence this type of error entirely as a rule Svelte override, but I am wondering if there's a way to disabled only this specific one, just as it is done for $: labels. Thanks in adavance!
The text was updated successfully, but these errors were encountered:
This would probably have to be an option for eslint-plugin-svelte3 since it handles removing lint errors for the $: labels. It might be possible to create a separate eslint plugin to handle the $m labels, but I haven't found a way to so far.
Is there a way to configure ESLint to ignore the label
$m:
declaration? Right now, I get a'$m:' is defined but never used.
no-unused-labels
error. I know I could silence this type of error entirely as a rule Svelte override, but I am wondering if there's a way to disabled only this specific one, just as it is done for$:
labels. Thanks in adavance!The text was updated successfully, but these errors were encountered: