Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Problems/Nom-Nom-Numbers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
19 changes: 7 additions & 12 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true // ignores the same files/directory's as .gitignore
"useIgnoreFile": true
},
"formatter": {
"enabled": true,
Expand All @@ -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"
Expand Down