From 5c4e810d55783462754ca4e3efd1087d8d597485 Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Sun, 19 Oct 2025 21:52:06 +0200 Subject: [PATCH] [BiomeJsBundle][OxlintBundle] Ignore `tests/` (and align other ignore patterns) (#1872) --- kocal/biome-js-bundle/2.0/biome.json | 1 + kocal/oxlint-bundle/1.0/.oxlintrc.json | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/kocal/biome-js-bundle/2.0/biome.json b/kocal/biome-js-bundle/2.0/biome.json index 9fb801c5..12c23f37 100644 --- a/kocal/biome-js-bundle/2.0/biome.json +++ b/kocal/biome-js-bundle/2.0/biome.json @@ -6,6 +6,7 @@ "!assets/controllers.json", "!public/assets/*", "!public/bundles/*", + "!tests/*", "!var/*", "!vendor/*", "!composer.json", diff --git a/kocal/oxlint-bundle/1.0/.oxlintrc.json b/kocal/oxlint-bundle/1.0/.oxlintrc.json index 7fc41be3..b1b40fae 100644 --- a/kocal/oxlint-bundle/1.0/.oxlintrc.json +++ b/kocal/oxlint-bundle/1.0/.oxlintrc.json @@ -1,9 +1,13 @@ { "ignorePatterns": [ "assets/vendor/**", + "assets/controllers.json", "public/assets/**", "public/bundles/**", + "tests/**", "var/**", - "vendor/**" + "vendor/**", + "composer.json", + "package.json" ] }