Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fireairforce committed Sep 27, 2024
1 parent dd4abd1 commit 649c7d2
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 74 deletions.
132 changes: 66 additions & 66 deletions crates/biome_configuration/src/analyzer/linter/rules.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/biome_js_analyze/src/lint/nursery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use biome_analyze::declare_lint_group;

pub mod use_guard_for_in;
pub mod no_common_js;
pub mod no_duplicate_else_if;
pub mod no_dynamic_namespace_import_access;
Expand All @@ -25,6 +24,7 @@ pub mod use_component_export_only_modules;
pub mod use_consistent_curly_braces;
pub mod use_consistent_member_accessibility;
pub mod use_explicit_function_return_type;
pub mod use_guard_for_in;
pub mod use_import_restrictions;
pub mod use_sorted_classes;
pub mod use_strict_mode;
Expand Down
3 changes: 2 additions & 1 deletion crates/biome_js_analyze/src/options.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 @@ -14,7 +14,7 @@ for (var x in o) foo();

# Diagnostics
```
invalid.js:1:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:1:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand All @@ -29,7 +29,7 @@ invalid.js:1:1 lint/nursery/guardForIn ━━━━━━━━━━━━━
```

```
invalid.js:2:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:2:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand All @@ -45,7 +45,7 @@ invalid.js:2:1 lint/nursery/guardForIn ━━━━━━━━━━━━━
```

```
invalid.js:3:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:3:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand All @@ -62,7 +62,7 @@ invalid.js:3:1 lint/nursery/guardForIn ━━━━━━━━━━━━━
```

```
invalid.js:4:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:4:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand All @@ -79,7 +79,7 @@ invalid.js:4:1 lint/nursery/guardForIn ━━━━━━━━━━━━━
```

```
invalid.js:5:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:5:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand All @@ -95,7 +95,7 @@ invalid.js:5:1 lint/nursery/guardForIn ━━━━━━━━━━━━━
```

```
invalid.js:6:1 lint/nursery/guardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
invalid.js:6:1 lint/nursery/useGuardForIn ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Require `for-in` loops to include an `if` statement.
Expand Down

0 comments on commit 649c7d2

Please sign in to comment.