From cfc756128ad2a0551d2979739201d5ba70f27f94 Mon Sep 17 00:00:00 2001 From: Kiril Videlov Date: Tue, 27 Jun 2023 14:23:49 +0200 Subject: [PATCH] make no-cycle a warning until we solve 4 cycles --- .eslintrc.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 74192450c..0bd07fba4 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -30,7 +30,7 @@ module.exports = { node: true }, rules: { - 'import/no-cycle': 'error', + 'import/no-cycle': 'warn', 'svelte/no-at-html-tags': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/no-empty-function': 'off',