From ceacbc5e046d7811104d694d73438121b9246b10 Mon Sep 17 00:00:00 2001 From: JohnnyVicious <6608571+JohnnyVicious@users.noreply.github.com> Date: Sun, 24 May 2026 20:41:18 +0200 Subject: [PATCH] chore: suppress noisy Biome rules in Codacy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disable noNodejsModules and useTopLevelRegex — these generate ~63% of Codacy findings but are false positives for a Node.js project with inline test regexes. Requires enabling "Use configuration file" for Biome in Codacy UI. --- biome.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..42e96c7 --- /dev/null +++ b/biome.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json", + "linter": { + "rules": { + "correctness": { + "noNodejsModules": "off" + }, + "performance": { + "useTopLevelRegex": "off" + } + } + } +}