Skip to content

Commit 59ecfb4

Browse files
authored
docs: fix typo in ignoreUnknown option description (#7829)
1 parent fcc9b42 commit 59ecfb4

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

crates/biome_cli/tests/snapshots/main_commands_check/check_help.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The configuration that is contained inside the file `biome.json`
2626
above this limit will be ignored for performance reasons. Defaults to
2727
1 MiB
2828
--files-ignore-unknown=<true|false> Tells Biome to not emit diagnostics when handling files
29-
that doesn't know
29+
that it doesn't know
3030
--indent-style=<tab|space> The indent style.
3131
--indent-width=NUMBER The size of the indentation, 2 by default
3232
--line-ending=<lf|crlf|cr> The type of line ending.

crates/biome_cli/tests/snapshots/main_commands_ci/ci_help.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The configuration that is contained inside the file `biome.json`
2727
above this limit will be ignored for performance reasons. Defaults to
2828
1 MiB
2929
--files-ignore-unknown=<true|false> Tells Biome to not emit diagnostics when handling files
30-
that doesn't know
30+
that it doesn't know
3131
--indent-style=<tab|space> The indent style.
3232
--indent-width=NUMBER The size of the indentation, 2 by default
3333
--line-ending=<lf|crlf|cr> The type of line ending.

crates/biome_cli/tests/snapshots/main_commands_format/format_help.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The configuration of the filesystem
9494
above this limit will be ignored for performance reasons. Defaults to
9595
1 MiB
9696
--files-ignore-unknown=<true|false> Tells Biome to not emit diagnostics when handling files
97-
that doesn't know
97+
that it doesn't know
9898
9999
Global options applied to all commands
100100
--colors=<off|force> Set the formatting mode for markup: "off" prints everything as plain

crates/biome_cli/tests/snapshots/main_commands_lint/lint_help.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The configuration of the filesystem
2828
above this limit will be ignored for performance reasons. Defaults to
2929
1 MiB
3030
--files-ignore-unknown=<true|false> Tells Biome to not emit diagnostics when handling files
31-
that doesn't know
31+
that it doesn't know
3232
3333
Linter options specific to the JavaScript linter
3434
--javascript-linter-enabled=<true|false> Control the linter for JavaScript (and its super

crates/biome_configuration/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ pub struct FilesConfiguration {
536536
#[serde(skip_serializing_if = "Option::is_none")]
537537
pub max_size: Option<MaxSize>,
538538

539-
/// Tells Biome to not emit diagnostics when handling files that doesn't know
539+
/// Tells Biome to not emit diagnostics when handling files that it doesn't know
540540
#[bpaf(long("files-ignore-unknown"), argument("true|false"), optional)]
541541
#[serde(skip_serializing_if = "Option::is_none")]
542542
pub ignore_unknown: Option<FilesIgnoreUnknownEnabled>,

packages/@biomejs/backend-jsonrpc/src/workspace.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@biomejs/biome/configuration_schema.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)