« get me outta code hell

infra: fix eslint complaining about while-assignment - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/.eslintrc.json
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-16 15:15:52 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-16 15:15:52 -0300
commit24c1e7d336bf01f29f8ea73638594ce407e32c21 (patch)
tree429c38da16a1d2a0de5f95eac94e6650eaa1502c /.eslintrc.json
parent2badc89d1fd8f04c0f63d4a81a1386dfcbe6617b (diff)
infra: fix eslint complaining about while-assignment
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 6367ba7..b6437c8 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -14,6 +14,7 @@
     "no-unused-vars": ["error", {
       "argsIgnorePattern": "^_",
       "destructuredArrayIgnorePattern": "^"
-    }]
+    }],
+    "no-cond-assign": ["off"]
   }
 }