Skip to content

Commit

Permalink
fix merge mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Nov 30, 2024
1 parent b5e576d commit 7507277
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
"noForEach": {
"level": "error",
"options": {
"validIdentifiers": ["Effect", "_"]
"allowedIdentifiers": ["Effect", "_"]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
source: crates/biome_js_analyze/tests/spec_tests.rs
expression: invalidConfig.js
snapshot_kind: text
---
# Input
```jsx
Expand All @@ -14,13 +15,13 @@ lib._.forEach([1, 2], function (value) {
```
invalidConfig.options:8:17 deserialize ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× 'validIdentifiers' does not accept empty values or values with dots.
× 'allowedIdentifiers' does not accept empty values or values with dots.
6 │ "noForEach": {
7 │ "level": "error",
> 8 │ "options": {
│ ^
> 9 │ "validIdentifiers": ["lib._"]
> 9 │ "allowedIdentifiers": ["lib._"]
> 10 │ }
│ ^
11 │ }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"noForEach": {
"level": "error",
"options": {
"validIdentifiers": ["lib._"]
"allowedIdentifiers": ["lib._"]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"noForEach": {
"level": "error",
"options": {
"validIdentifiers": ["Effect", "_"]
"allowedIdentifiers": ["Effect", "_"]
}
}
}
Expand Down

0 comments on commit 7507277

Please sign in to comment.