Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Oct 16, 2023
1 parent 93fd4a7 commit be64ce5
Show file tree
Hide file tree
Showing 12 changed files with 482 additions and 460 deletions.
10 changes: 0 additions & 10 deletions crates/biome_js_analyze/src/analyzers/nursery.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ declare_rule! {
/// ```
///
pub(crate) NoEmptyBlockStatements {
version: "next",
version: "1.3.0",
name: "noEmptyBlockStatements",
recommended: false,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ invalid.js:1:1 lint/complexity/noForEach ━━━━━━━━━━━━━
4 │
5 │ (els.forEach)((el) => {
i forEach could lead to performance issue when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
i forEach could lead to performance issues when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
```
Expand All @@ -56,7 +56,7 @@ invalid.js:5:1 lint/complexity/noForEach ━━━━━━━━━━━━━
8 │
9 │ els['forEach']((el) => {
i forEach could lead to performance issue when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
i forEach could lead to performance issues when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
```
Expand All @@ -76,7 +76,7 @@ invalid.js:9:1 lint/complexity/noForEach ━━━━━━━━━━━━━
12 │
13 │ (els['forEach'])((el) => {
i forEach could lead to performance issue when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
i forEach could lead to performance issues when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
```
Expand All @@ -95,7 +95,7 @@ invalid.js:13:1 lint/complexity/noForEach ━━━━━━━━━━━━
│ ^^
16 │
i forEach could lead to performance issue when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
i forEach could lead to performance issues when working with large arrays. When combined with functions like .filter or .map, this causes multiple iterations over the same type.
```
Expand Down
Loading

0 comments on commit be64ce5

Please sign in to comment.