Skip to content

Commit

Permalink
refactor: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed Sep 15, 2023
1 parent 92f6351 commit 5f675b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions crates/biome_cli/tests/commands/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2533,10 +2533,7 @@ fn should_not_enable_nursery_rules() {
fs.insert(configuration_path.into(), configuration.as_bytes());

let file_path = Path::new("fix.ts");
fs.insert(
file_path.into(),
r#"let confusingVoidType: void;"#,
);
fs.insert(file_path.into(), r#"let confusingVoidType: void;"#);

let result = run_cli(
DynRef::Borrowed(&mut fs),
Expand Down
6 changes: 3 additions & 3 deletions crates/biome_js_analyze/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ use crate::analyzers::nursery::no_excessive_complexity::{complexity_options, Com
use crate::semantic_analyzers::nursery::use_exhaustive_dependencies::{
hooks_options, HooksOptions,
};
use crate::semantic_analyzers::style::use_naming_convention::{
naming_convention_options, NamingConventionOptions,
};
use crate::semantic_analyzers::style::no_restricted_globals::{
restricted_globals_options, RestrictedGlobalsOptions,
};
use crate::semantic_analyzers::style::use_naming_convention::{
naming_convention_options, NamingConventionOptions,
};
use biome_analyze::options::RuleOptions;
use biome_analyze::RuleKey;
use biome_deserialize::json::VisitJsonNode;
Expand Down

0 comments on commit 5f675b7

Please sign in to comment.