fix(eslint): 🐛 svelte's mutable props

Fixed props, exported such as "export let foo;",
being wrongly linted with
"import/no-mutable-exports"
This commit is contained in:
Guz013
2023-06-19 14:21:19 -03:00
parent 6b80bb8ce0
commit df4e7dfa6d

View File

@@ -31,6 +31,7 @@ module.exports = {
},
rules: {
'no-undef': ['warn'],
'import/no-mutable-exports': 'off',
},
},
{