Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Ensure parseInt calls use explicit radix parameter for clarity and reliability
- Fix precision loss in test data generators by using JavaScript safe integer limits
- Add block scoping to switch statement cases to prevent variable declaration issues
- Enforce const usage for variables that are never reassigned

## v0.10.9
- Add support for IPv6 urls
Expand Down
1 change: 0 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"useLiteralKeys": "off"
},
"style": {
"useConst": "off",
"useNodejsImportProtocol": "off",
"useTemplate": "off",
"useExponentiationOperator": "off"
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/callback_api/rpc_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function fib(n) {
let a = 0,
b = 1;
for (let i = 0; i < n; i++) {
let c = a + b;
const c = a + b;
a = b;
b = c;
}
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/rpc_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function fib(n) {
let a = 0,
b = 1;
for (let i = 0; i < n; i++) {
let c = a + b;
const c = a + b;
a = b;
b = c;
}
Expand Down