From 1146ae7de854ef14e17b6815f941a5c16c98dfea Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Tue, 17 Jun 2025 19:39:58 -0700 Subject: [PATCH] Add a couple comments to `biome.jsonc` --- biome.jsonc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index 61ef00a02b1..2281120bf1c 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -139,10 +139,10 @@ "noAwaitInLoop": "warn", "useJsonImportAttribute": "off", // "Import attributes are only supported when the '--module' option is set to 'esnext', 'node18', 'nodenext', or 'preserve'. ts(2823)" "useIndexOf": "error", - "useObjectSpread": "info", + "useObjectSpread": "error", "useNumericSeparators": "off", // TODO: enable? - "useIterableCallbackReturn": "warn", - "noShadow": "warn" + "useIterableCallbackReturn": "warn", // TODO: refactor and make "error" + "noShadow": "warn" // TODO: refactor and make "error" } } },