From 1fa441690b32add05488f4084a9a8a3286295bb0 Mon Sep 17 00:00:00 2001 From: Dennis Date: Sun, 25 Jan 2026 18:03:17 +0100 Subject: [PATCH 1/2] Updated Biome --- biome.jsonc | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index b025afe..cec14ed 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -3,7 +3,7 @@ "vcs": { "enabled": true, "clientKind": "git", - "useIgnoreFile": true // ignores the same files/directory's as .gitignore + "useIgnoreFile": true }, "formatter": { "enabled": true, @@ -16,24 +16,19 @@ "rules": { "recommended": true, "complexity": { - "noForEach": "off", // allow forEach usage. - "useLiteralKeys": "off", // allow non-literal keys. - "noCommaOperator": "on" // disallow the comma operator which is often confusing. + "noForEach": "off", + "useLiteralKeys": "off", + "noBannedTypes": "off" }, "suspicious": { - "noExplicitAny": "off", - "noAsyncPromiseExecutor": "on", // disallows using an async function as a Promise executor. - "noTemplateCurlyInString": "on", // disallow template literal placeholder syntax in regular strings. - "noAssignInExpressions": "on", // disallow assignments in expressions. - "useIterableCallbackReturn": "off", // enforce consistent return values in iterable callbacks. - "noDuplicateTestHooks": "off" // nested describe blocks need separate hooks per vendor. + "noExplicitAny": "off" }, "correctness": { "useExhaustiveDependencies": "off", - "noEmptyCharacterClassInRegex": "on" // disallow empty character classes in regular expression literals. + "noEmptyCharacterClassInRegex": "on" }, "performance": { - "noAccumulatingSpread": "off" // disallow the use of spread (...) syntax on accumulators. + "noAccumulatingSpread": "off" }, "style": { "noNonNullAssertion": "off" From efc2887d059e7240c8acafff09184a28f78dc7bc Mon Sep 17 00:00:00 2001 From: Dennis Date: Sun, 25 Jan 2026 18:05:38 +0100 Subject: [PATCH 2/2] Removed Readme leftover --- Problems/Nom-Nom-Numbers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Problems/Nom-Nom-Numbers/README.md b/Problems/Nom-Nom-Numbers/README.md index 0026b15..057c211 100644 --- a/Problems/Nom-Nom-Numbers/README.md +++ b/Problems/Nom-Nom-Numbers/README.md @@ -22,7 +22,7 @@ We repeat the progress until the last number is reached. Now we return the array --- -### Information's %Informations where the problem comes from. Most of them came from Sloth Byte% +### Information's This problem comes from the newsletter [Sloth Bytes](https://slothbytes.beehiiv.com). [Post](https://slothbytes.beehiiv.com/p/the-future-of-software-engineering-interviews) from October 28, 2025.