Don't assign literal values in reactive statements
This rule reports on any assignment of a static, unchanging value within a reactive statement because it's not necessary.
<script>
/* eslint svelte/no-reactive-literals: "error" */
/* ✓ GOOD */
let foo = "bar";
/* ✗ BAD */
$: foo = "bar";
</script>
Nothing