Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit b3a83df

Browse files
fix: 🐛 cr issue
1 parent 1af66fd commit b3a83df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/rome_js_analyze/src/semantic_analyzers/js.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ mod no_import_assign;
88
mod no_label_var;
99
mod no_shouty_constants;
1010
mod use_camel_case;
11-
declare_group! { pub (crate) Js { name : "js" , rules : [no_arguments :: NoArguments , no_catch_assign :: NoCatchAssign , no_function_assign :: NoFunctionAssign , no_label_var :: NoLabelVar , no_shouty_constants :: NoShoutyConstants , use_camel_case :: UseCamelCase ,] } }
11+
declare_group! { pub (crate) Js { name : "js" , rules : [no_arguments :: NoArguments , no_catch_assign :: NoCatchAssign , no_function_assign :: NoFunctionAssign , no_import_assign :: NoImportAssign , no_label_var :: NoLabelVar , no_shouty_constants :: NoShoutyConstants , use_camel_case :: UseCamelCase ,] } }

crates/rome_js_analyze/src/semantic_analyzers/js/no_import_assign.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ declare_rule! {
5252
pub(crate) NoImportAssign {
5353
version: "0.8.0",
5454
name: "noImportAssign",
55-
recommended: true
55+
recommended: true,
5656
}
5757
}
5858

crates/rome_js_analyze/tests/specs/js/noImportAssign.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
source: crates/rome_js_analyze/tests/spec_tests.rs
3-
assertion_line: 88
3+
assertion_line: 89
44
expression: noImportAssign.js
55
---
66
# Input

0 commit comments

Comments
 (0)