From 7e0357abe5995d055948cf4cd5a6964f8d732b7e Mon Sep 17 00:00:00 2001 From: 12ball Date: Sat, 21 Dec 2024 14:16:18 -0600 Subject: [PATCH] chore: Run just f --- .../src/lint/nursery/no_restricted_imports.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/biome_js_analyze/src/lint/nursery/no_restricted_imports.rs b/crates/biome_js_analyze/src/lint/nursery/no_restricted_imports.rs index d2b00af7b065..cc03f694658e 100644 --- a/crates/biome_js_analyze/src/lint/nursery/no_restricted_imports.rs +++ b/crates/biome_js_analyze/src/lint/nursery/no_restricted_imports.rs @@ -24,7 +24,7 @@ declare_lint_rule! { /// Disallow specified modules when loaded by import or require. /// /// ## Examples - /// + /// /// ```json /// { /// "noRestrictedImports": { @@ -39,7 +39,7 @@ declare_lint_rule! { /// ``` /// /// **Since**: `v2` - /// + /// /// ```json,options /// { /// "options": { @@ -160,7 +160,7 @@ declare_lint_rule! { /// ``` /// /// ## Options - /// + /// /// ```json /// { /// "noRestrictedImports": { @@ -173,7 +173,7 @@ declare_lint_rule! { /// } /// } /// ``` - /// + /// /// **Since**: `v2` /// /// Use the options to specify the import paths and/or specific import names within them that you want to restrict in your source code.