From bf162c41148f63de731ce77c131a4cab541d2dc9 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 19 Jul 2023 15:53:39 +0100 Subject: [PATCH] Enable no cyclic dependencies eslint rule --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 6f07f3b95..c07669cfb 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -22,6 +22,7 @@ }], "import/no-amd": "error", "import/no-commonjs": "error", + "import/no-cycle": "error", "import/no-dynamic-require": "error", // Disable the rule that checks that devDependencies aren't imported since we use a single // linting configuration file for both source and test code.