Skip to content

Commit 6cfc44f

Browse files
authored
docs(assist/organizeImports): remove expect_diagnostic,use_options (#5416)
1 parent d1e5499 commit 6cfc44f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/biome_js_analyze/src/assist/source/organize_imports.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ declare_source_rule! {
289289
///
290290
/// ...and the following code...
291291
///
292-
/// ```js,expect_diagnostic,use_options
292+
/// ```js
293293
/// import sibling from "./file.js";
294294
/// import internal from "#alias";
295295
/// import fs from "fs";
@@ -337,7 +337,7 @@ declare_source_rule! {
337337
///
338338
/// By applying this configuration to the following code...
339339
///
340-
/// ```js,expect_diagnostic,use_options
340+
/// ```js
341341
/// import lib from "@my/lib";
342342
/// import aliased from "@/alias";
343343
/// import path from "@my/lib/special";
@@ -387,7 +387,7 @@ declare_source_rule! {
387387
///
388388
/// ...the following code...
389389
///
390-
/// ```js,expect_diagnostic,use_options
390+
/// ```js
391391
/// import path from "node:path";
392392
/// import lib from "@my/lib";
393393
/// import test from "@my/lib/path";

0 commit comments

Comments
 (0)