From df4e7dfa6d2090288f6a3cc63a53a70dd0aad467 Mon Sep 17 00:00:00 2001 From: Guz013 <43732358+Guz013@users.noreply.github.com> Date: Mon, 19 Jun 2023 14:21:19 -0300 Subject: [PATCH] =?UTF-8?q?fix(eslint):=20=F0=9F=90=9B=20svelte's=20mutabl?= =?UTF-8?q?e=20props?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed props, exported such as "export let foo;", being wrongly linted with "import/no-mutable-exports" --- .eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 0a50c47..204d07c 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -31,6 +31,7 @@ module.exports = { }, rules: { 'no-undef': ['warn'], + 'import/no-mutable-exports': 'off', }, }, {