Aller au contenu

CLI

Ce contenu n’est pas encore disponible dans votre langue.

Use the command-line interface (CLI) to check, format, lint, and manage Biome from your terminal or CI environment.

The Biome CLI can be run with your project’s package manager or as a standalone native executable that does not require Node.js.

Terminal window
npx @biomejs/biome check .

Prints the Biome CLI version and information about the connected daemon server, if any, then exits.

This command also accepts global flags.

Upgrades Biome to the latest stable version.

This command upgrades the current Biome binary based on how it was installed:

  • Standalone: Upgrades a standalone binary in place to the latest stable version.
  • Homebrew: If Biome was installed with Homebrew, this command runs brew upgrade biome.

Set BIOME_DISTRIBUTION to npm, homebrew, or standalone to override automatic detection.

Prints a troubleshooting report with CLI, platform, environment, configuration, workspace, and daemon server information.

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Includes the latest daemon server log. If the CLI is not connected to a daemon server, this flag also discovers running Biome daemon server instances.

Includes the formatter settings loaded from the Biome configuration.

Includes the linter settings and enabled lint rules loaded from the Biome configuration.

Starts the Biome daemon server used for integration with third-party clients, such as editor extensions.

This command also accepts the relevant shared flags.

Stops the Biome daemon server if it is running.

Checks the specified files for formatting, linting, and assist actions.

The optional PATH arguments accept one or more paths to files or directories. If omitted, Biome checks files in the current working directory.

Terminal window
biome check ./src

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Applies formatting changes, safe lint fixes, and safe assist actions.

Allows --write or --fix to apply unsafe fixes and assist actions.

Enables or disables formatting checks for this command.

Terminal window
biome check --formatter-enabled=false

Enables or disables linting checks for this command.

Terminal window
biome check --linter-enabled=true

Enables or disables assist actions for this command.

Terminal window
biome check --assist-enabled=true

Enforces assist actions and causes the command to fail if required actions are not applied. Defaults to true.

Terminal window
biome check --enforce-assist=false

Reports how long each rule takes to run. It excludes the time spent preparing the analysis, such as building the semantic model.

Reads code from standard input and writes the processed code to standard output.

Biome uses PATH to select settings and determine the input type from its extension. Virtual paths don’t need to exist or belong to the project. They bypass files.includes and VCS ignore checks.

Terminal window
echo 'let a;' | biome check --stdin-file-path=file.js --write

Checks only staged files. This option is intended for local use.

Checks only files with committed changes compared to the configured vcs.defaultBranch or the base reference specified by --since. Staged and unstaged changes are not included. This option is intended for CI.

Sets the base reference used by --changed, overriding vcs.defaultBranch. Requires --changed.

Terminal window
biome check --changed --since=main

Runs only the given lint rule, assist action, group of rules and actions, or domain. If a selected rule’s severity is off, Biome sets it to error for a recommended rule or warn otherwise. The plugin group runs only analyzer plugins.

Terminal window
biome check --only=correctness/noUnusedVariables --only=suspicious --only=test --only=plugin

Skips the given lint rule, assist action, group of rules and actions, or domain. Matching lint rules are set to off. This option takes precedence over --only. The plugin group skips analyzer plugins.

Terminal window
biome check --skip=correctness/noUnusedVariables --skip=suspicious --skip=project --skip=plugin

After the initial run, watches the selected paths and reprocesses files modified afterward.

Runs the linter on the specified files.

The optional PATH arguments accept one or more paths to files or directories. If omitted, Biome lints files in the current working directory.

Terminal window
biome lint ./src

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Applies safe lint fixes.

Allows --write or --fix to apply unsafe lint fixes.

Writes comment suppressions for lint rule violations instead of applying rule fixes.

Adds an explanation to suppressions created by --suppress. This flag requires --suppress.

Terminal window
biome lint --suppress --reason="explanation"

Runs only the given lint rule, rule group, or domain. If a rule’s severity is off, Biome sets it to error for a recommended rule or warn otherwise. The plugin group runs only analyzer plugins.

Terminal window
biome lint --only=correctness/noUnusedVariables --only=suspicious --only=test --only=plugin

Skips the given lint rule, rule group, or domain by setting the affected rules to off. This option takes precedence over --only. The plugin group skips analyzer plugins.

Terminal window
biome lint --skip=correctness/noUnusedVariables --skip=suspicious --skip=project --skip=plugin

Reads code from standard input and writes the processed code to standard output.

Biome uses PATH to select settings and determine the input type from its extension. Virtual paths don’t need to exist or belong to the project. They bypass files.includes and VCS ignore checks.

Terminal window
echo 'let a;' | biome lint --stdin-file-path=file.js --write

Lints only staged files. This option is intended for local use.

Lints only files with committed changes compared to the configured vcs.defaultBranch or the base reference specified by --since. Staged and unstaged changes are not included. This option is intended for CI.

Sets the base reference used by --changed, overriding vcs.defaultBranch. Requires --changed.

Terminal window
biome lint --changed --since=main

Reports how long each rule takes to run. It excludes the time spent preparing the analysis, such as building the semantic model.

After the initial run, watches the selected paths and reprocesses files modified afterward.

Formats the specified files.

The optional PATH arguments accept one or more paths to files or directories. If omitted, Biome formats files in the current working directory.

Terminal window
biome format ./src

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Reads code from standard input and writes the processed code to standard output.

Biome uses PATH to select settings and determine the input type from its extension. Virtual paths don’t need to exist or belong to the project. They bypass files.includes and VCS ignore checks.

Terminal window
echo 'let a;' | biome format --stdin-file-path=file.js

Applies formatting changes.

Formats only staged files. This option is intended for local use.

Formats only files with committed changes compared to the configured vcs.defaultBranch or the base reference specified by --since. Staged and unstaged changes are not included. This option is intended for CI.

Sets the base reference used by --changed, overriding vcs.defaultBranch. Requires --changed.

Terminal window
biome format --changed --since=main

After the initial run, watches the selected paths and reprocesses files modified afterward.

Runs formatting checks, linting checks, and assist actions in CI without modifying files.

The optional PATH arguments accept one or more paths to files or directories. If omitted, Biome checks files in the current working directory.

Terminal window
biome ci ./src

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Enables or disables formatting checks for this command.

Terminal window
biome ci --formatter-enabled=false

Enables or disables linting checks for this command.

Terminal window
biome ci --linter-enabled=true

Enables or disables assist actions for this command.

Terminal window
biome ci --assist-enabled=true

Enforces assist actions and causes the command to fail if required actions are not applied. Defaults to true.

Terminal window
biome ci --enforce-assist=false

Checks only files with committed changes compared to the configured vcs.defaultBranch or the base reference specified by --since. Staged and unstaged changes are not included. This option is intended for CI.

Sets the base reference used by --changed, overriding vcs.defaultBranch. Requires --changed.

Terminal window
biome ci --changed --since=main

Sets the number of threads to use. This is useful in environments with limited resources, such as CI.

Terminal window
biome ci --threads=4

Uses the BIOME_THREADS environment variable.

Runs only the given lint rule, assist action, group of rules and actions, or domain. If a selected rule’s severity is off, Biome sets it to error for a recommended rule or warn otherwise. The plugin group runs only analyzer plugins.

Terminal window
biome ci --only=correctness/noUnusedVariables --only=suspicious --only=test --only=plugin

Skips the given lint rule, assist action, group of rules and actions, or domain. Matching lint rules are set to off. This option takes precedence over --only. The plugin group skips analyzer plugins.

Terminal window
biome ci --skip=correctness/noUnusedVariables --skip=suspicious --skip=project --skip=plugin

Creates a default Biome configuration file in the current working directory.

Flags

Creates biome.jsonc instead of biome.json.

Ensures that the Biome daemon server is running, then forwards Language Server Protocol messages between the daemon server and standard input and output.

This command also accepts the relevant shared flags.

Previews configuration updates required by breaking changes. The prettier and eslint subcommands instead import settings from those tools.

By default, this command displays the proposed changes without modifying files. Use --write to apply them.

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Applies the proposed migration or imported settings.

Subcommands

Imports Prettier configuration and ignore settings into the Biome configuration.

Imports an ESLint configuration and ignore settings from the current working directory into the Biome configuration.

The eslint subcommand accepts these additional flags:

Includes Biome rules inspired by ESLint rules in the migration.

Includes nursery rules in the migration.

EXPERIMENTAL: Finds code that matches a GritQL pattern, optionally limited to specific files or directories.

The required PATTERN argument is the GritQL query to find. Rewrite queries aren’t supported because biome search is read-only.

The optional PATH arguments limit the search to one or more files or directories. Without a path, Biome searches files in the current working directory.

The following command finds console.log invocations in ./src:

Terminal window
biome search '`console.log($message)`' ./src

This command also accepts global flags, the relevant shared flags, and the following additional flags:

Flags

Selects the language grammar used for the pattern and searched code: CSS, JavaScript, or JSON.

GritQL patterns are specific to their target grammar, so a search cannot target multiple languages at once.

Defaults to javascript.

Terminal window
biome search --language=javascript '`console.log($message)`'

Prints documentation for a lint rule or the path to the daemon server log directory.

NAME is a lint rule name or daemon-logs.

Terminal window
biome explain noDebugger
biome explain daemon-logs

Removes the Biome daemon server log files.

These flags are available to many commands and control general CLI behavior, diagnostics, and output.

General flags

Prints help information.

Prints version information.

Controls ANSI styling: off disables it, while force enables it even when the output does not appear to support ANSI escapes.

Connects to a running instance of the Biome daemon server.

Shows additional diagnostic details and lists the files that were processed or modified.

Sets the path to the configuration file or the directory where Biome should search for biome.json or biome.jsonc. This option disables the default configuration file resolution.

Uses the BIOME_CONFIG_PATH environment variable.

Limits the number of diagnostics displayed. Use none to remove the limit.

Defaults to 20.

Skips files containing syntax errors instead of emitting an error diagnostic.

Does not emit an error when no files are processed.

Exits with an error status if any warning diagnostics are emitted.

Sets the minimum diagnostic severity to display: info, warn, or error. For example, --diagnostic-level=error displays only error-level diagnostics.

Defaults to info.

Reporter flags

Changes how diagnostics and the run summary are written.

Defaults to default.

Terminal window
biome ci --reporter=github
ValueOutput
defaultFull diagnostics and a summary for use in a terminal.
conciseOne line per diagnostic, with formatter diagnostics grouped together.
summaryDiagnostics grouped by category and rule, and formatter diagnostics grouped by file.
jsonMachine-readable JSON.
json-prettyPretty-printed JSON using Biome’s default JSON formatting settings.
githubGitHub workflow commands that create annotations.
gitlabA GitLab Code Quality report.
junitJUnit XML for test and CI integrations.
checkstyleCheckstyle XML.
rdjsonReviewdog diagnostic JSON.
sarifSARIF for static analysis integrations.

Writes the associated reporter’s output to PATH. Without --reporter, it writes the default reporter’s output.

Terminal window
biome ci --reporter=junit --reporter-file=report.xml

Repeat --reporter to produce multiple outputs. This example prints the default output to the terminal and writes an RDJSON report to a file:

Terminal window
biome ci --reporter=default --reporter=rdjson --reporter-file=report.json

These flags are accepted by multiple commands. Configuration flags override the equivalent settings from biome.json or biome.jsonc.

Selects how the daemon server detects file changes. recommended uses the operating system’s recommended watcher, polling periodically checks for changes, and none disables watching.

Uses the BIOME_WATCHER_KIND environment variable.

Defaults to recommended.

Sets how often the polling watcher checks for file changes, in milliseconds. This setting applies only when --watcher-kind=polling.

Uses the BIOME_WATCHER_POLLING_INTERVAL environment variable.

Defaults to 2000.

Allows parsing comments in .json files.

--json-parse-allow-trailing-commas=<true|false>

Section titled “--json-parse-allow-trailing-commas=<true|false>”

Allows parsing trailing commas in .json files.

Whether Biome should integrate with the version control client.

The version control client.

When true, Biome ignores files listed in .gitignore, .ignore, and Git’s local exclude file.

Sets the directory where Biome checks for version control files.

Defaults to the directory containing biome.json or biome.jsonc. If no configuration is found, Biome uses the current working directory.

If neither directory is available, Biome disables version control integration and emits a diagnostic.

The project’s default branch.

The maximum source file size in bytes. Biome ignores larger files. Defaults to 1 MiB.

Prevents Biome from emitting diagnostics for unrecognized file types.

Allows formatting files that contain syntax errors when set to true. Defaults to false.

Uses tabs or spaces for indentation. Defaults to tab.

The indentation width. Defaults to 2.

Selects the line ending. auto uses the platform convention. Defaults to lf.

The maximum line width. Defaults to 80.

The attribute position style in HTML-like languages. Defaults to auto.

Places the > of a multiline HTML or JSX element at the end of the last line instead of on the next line. Self-closing elements are unaffected. Defaults to false.

Whether to insert spaces inside braces in object literals. Defaults to true.

Controls spaces immediately inside supported delimiters when their content fits on one line. It doesn’t add spaces before opening delimiters or inside empty delimiters.

The affected delimiters vary by language. Defaults to false.

Controls whether arrays and objects are formatted on one line or multiple lines.

  • auto: Formats objects on multiple lines if the first property has a newline, and arrays on one line if they fit.
  • always: Formats arrays and objects on multiple lines.
  • never: Formats arrays and objects on one line if they fit.

Defaults to auto.

When formatting package.json, Biome uses always unless configured otherwise.

Whether to add a trailing newline at the end of the file. Defaults to true.

Uses .editorconfig files to configure the formatter. Settings in biome.json or biome.jsonc override .editorconfig settings. Defaults to false.

When enabled, files such as .js, .mjs, and .cjs may contain JSX syntax. Defaults to true.

--javascript-formatter-enabled=<true|false>

Section titled “--javascript-formatter-enabled=<true|false>”

Controls the formatter for JavaScript and languages that extend it.

The type of quotes used in JSX. Defaults to double.

Controls when object properties are quoted. Defaults to as-needed.

Prints trailing commas wherever possible in multiline comma-separated structures. Defaults to all.

Prints semicolons after every statement or only where needed to avoid automatic semicolon insertion hazards. Defaults to always.

Whether to add parentheses around arrow function parameters. Defaults to always.

--javascript-formatter-indent-style=<tab|space>

Section titled “--javascript-formatter-indent-style=<tab|space>”

The indent style applied to JavaScript and languages that extend it. If unset, inherits the global indentation style.

--javascript-formatter-indent-width=NUMBER

Section titled “--javascript-formatter-indent-width=NUMBER”

The indentation width applied to JavaScript and languages that extend it. If unset, inherits the global indentation width.

--javascript-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--javascript-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to JavaScript and languages that extend it. If unset, inherits the global line ending.

The maximum line width applied to JavaScript and languages that extend it. If unset, inherits the global line width.

--javascript-formatter-quote-style=<double|single>

Section titled “--javascript-formatter-quote-style=<double|single>”

The type of quotes used in JavaScript code. Defaults to double.

--javascript-formatter-attribute-position=<multiline|auto>

Section titled “--javascript-formatter-attribute-position=<multiline|auto>”

The attribute position style in JSX elements. If unset, inherits the global attribute position setting.

--javascript-formatter-bracket-spacing=<true|false>

Section titled “--javascript-formatter-bracket-spacing=<true|false>”

Whether to insert spaces inside braces in object literals. If unset, inherits the global bracket spacing setting.

--javascript-formatter-delimiter-spacing=<true|false>

Section titled “--javascript-formatter-delimiter-spacing=<true|false>”

Controls spaces immediately inside supported JavaScript and TypeScript delimiters when their content fits on one line. It doesn’t add spaces before opening delimiters or inside empty delimiters.

It affects parentheses, square brackets, template interpolations, TypeScript angle brackets, JSX expression braces, and logical NOT. In operator chains, only the final operator receives a following space.

If unset, inherits the global delimiter spacing setting.

--javascript-formatter-expand=<auto|always|never>

Section titled “--javascript-formatter-expand=<auto|always|never>”

Uses the same auto, always, and never behavior as the global expansion setting.

If unset, inherits the global expansion setting.

--javascript-formatter-operator-linebreak=<before|after>

Section titled “--javascript-formatter-operator-linebreak=<before|after>”

When breaking binary expressions into multiple lines, whether to break them before or after the binary operator. Defaults to after.

--javascript-formatter-trailing-newline=<true|false>

Section titled “--javascript-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. If unset, inherits the global trailing newline setting.

Controls the linter for JavaScript and languages that extend it.

Controls assist actions for JavaScript and languages that extend it.

Controls the formatter for JSON and languages that extend it.

The indent style applied to JSON and languages that extend it. If unset, inherits the global indentation style.

The indentation width applied to JSON and languages that extend it. If unset, inherits the global indentation width.

--json-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--json-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to JSON and languages that extend it. If unset, inherits the global line ending.

The maximum line width applied to JSON and languages that extend it. If unset, inherits the global line width.

--json-formatter-trailing-commas=<none|all>

Section titled “--json-formatter-trailing-commas=<none|all>”

Prints trailing commas wherever possible in multiline comma-separated structures. Defaults to none.

--json-formatter-expand=<auto|always|never>

Section titled “--json-formatter-expand=<auto|always|never>”

Uses the same auto, always, and never behavior as the global expansion setting.

If unset, inherits the global expansion setting.

When formatting package.json, Biome uses always unless configured otherwise.

--json-formatter-bracket-spacing=<true|false>

Section titled “--json-formatter-bracket-spacing=<true|false>”

Whether to insert spaces inside braces in object literals. If unset, inherits the global bracket spacing setting.

--json-formatter-delimiter-spacing=<true|false>

Section titled “--json-formatter-delimiter-spacing=<true|false>”

Controls spaces inside JSON square brackets when their content fits on one line. When enabled, [1, 2, 3] becomes [ 1, 2, 3 ]. Empty brackets are unchanged.

If unset, inherits the global delimiter spacing setting.

--json-formatter-trailing-newline=<true|false>

Section titled “--json-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. If unset, inherits the global trailing newline setting.

Controls the linter for JSON and languages that extend it.

Controls assist actions for JSON and languages that extend it.

Enables parsing of CSS Modules-specific features. Enable this feature only when your files don’t end in .module.css.

--css-parse-tailwind-directives=<true|false>

Section titled “--css-parse-tailwind-directives=<true|false>”

Enables parsing of Tailwind CSS 4.0 directives and functions.

Controls the formatter for CSS and languages that extend it.

The indent style applied to CSS and languages that extend it. If unset, inherits the global indentation style.

The indentation width applied to CSS and languages that extend it. If unset, inherits the global indentation width.

--css-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--css-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to CSS and languages that extend it. If unset, inherits the global line ending.

The maximum line width for CSS and languages that extend it. If unset, inherits the global line width.

--css-formatter-quote-style=<double|single>

Section titled “--css-formatter-quote-style=<double|single>”

The type of quotes used in CSS code. Defaults to double.

--css-formatter-delimiter-spacing=<true|false>

Section titled “--css-formatter-delimiter-spacing=<true|false>”

Controls spaces inside CSS parentheses and square brackets when their content fits on one line. When enabled, rgb(0, 0, 0) becomes rgb( 0, 0, 0 ) and [data-attr] becomes [ data-attr ]. Empty delimiters are unchanged.

If unset, inherits the global delimiter spacing setting.

--css-formatter-trailing-newline=<true|false>

Section titled “--css-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. If unset, inherits the global trailing newline setting.

Controls the linter for CSS files.

Controls assist actions for CSS files.

Controls the formatter for GraphQL files.

--graphql-formatter-indent-style=<tab|space>

Section titled “--graphql-formatter-indent-style=<tab|space>”

The indent style applied to GraphQL files. If unset, inherits the global indentation style.

The indentation width applied to GraphQL files. If unset, inherits the global indentation width.

--graphql-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--graphql-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to GraphQL files. If unset, inherits the global line ending.

The maximum line width for GraphQL files. If unset, inherits the global line width.

--graphql-formatter-quote-style=<double|single>

Section titled “--graphql-formatter-quote-style=<double|single>”

The type of quotes used in GraphQL code. Defaults to double.

--graphql-formatter-trailing-newline=<true|false>

Section titled “--graphql-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. If unset, inherits the global trailing newline setting.

Controls the linter for GraphQL files.

Controls assist actions for GraphQL files.

Controls the formatter for GritQL files.

The indent style applied to GritQL files. If unset, inherits the global indentation style.

The indentation width applied to GritQL files. If unset, inherits the global indentation width.

--grit-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--grit-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to GritQL files. If unset, inherits the global line ending.

The maximum line width for GritQL files. If unset, inherits the global line width.

--grit-formatter-trailing-newline=<true|false>

Section titled “--grit-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. If unset, inherits the global trailing newline setting.

Controls the linter for GritQL files.

Controls assist actions for GritQL files.

Controls the formatter for HTML and languages that extend it.

The indent style applied to HTML and languages that extend it. If unset, inherits the global indentation style.

The indentation width applied to HTML and languages that extend it. If unset, inherits the global indentation width.

--html-formatter-line-ending=<lf|crlf|cr|auto>

Section titled “--html-formatter-line-ending=<lf|crlf|cr|auto>”

The line ending applied to HTML and languages that extend it. If unset, inherits the global line ending.

The maximum line width for HTML and languages that extend it. If unset, inherits the global line width.

--html-formatter-attribute-position=<multiline|auto>

Section titled “--html-formatter-attribute-position=<multiline|auto>”

The attribute position style in HTML elements. If unset, inherits the global attribute position setting.

--html-formatter-bracket-same-line=<true|false>

Section titled “--html-formatter-bracket-same-line=<true|false>”

Whether to place the closing bracket of a multiline HTML tag at the end of the last line instead of on its own line. If unset, inherits the global bracketSameLine setting.

--html-formatter-whitespace-sensitivity=<css|strict|ignore>

Section titled “--html-formatter-whitespace-sensitivity=<css|strict|ignore>”

Whether to account for whitespace sensitivity when formatting HTML and languages that extend it. Defaults to css.

--html-formatter-indent-script-and-style=<true|false>

Section titled “--html-formatter-indent-script-and-style=<true|false>”

Whether to indent <script> and <style> tags in HTML and languages that extend it. Defaults to false.

--html-formatter-self-close-void-elements=<always|never>

Section titled “--html-formatter-self-close-void-elements=<always|never>”

Controls whether void elements are self-closed. Defaults to never.

--html-formatter-trailing-newline=<true|false>

Section titled “--html-formatter-trailing-newline=<true|false>”

Whether to add a trailing newline at the end of the file. Unlike other language-specific trailing newline settings, this option defaults to true instead of inheriting the global setting.

Controls the linter for HTML and languages that extend it.

Controls assist actions for HTML and languages that extend it.

For file-processing commands, writes internal CLI logs to this file instead of standard output.

Uses the BIOME_LOG_FILE environment variable.

When starting the daemon server, sets the file name prefix used for rotated log files.

Uses the BIOME_LOG_PREFIX_NAME environment variable.

Defaults to server.log.

When starting the daemon server, sets the directory where log files are stored.

Uses the BIOME_LOG_PATH environment variable.

Defaults to the biome-logs directory inside Biome’s platform-specific cache directory.

--log-level=<none|tracing|debug|info|warn|error>

Section titled “--log-level=<none|tracing|debug|info|warn|error>”

For file-processing commands, sets the internal CLI logging level to tracing, debug, info, warn, error, or none.

Uses the BIOME_LOG_LEVEL environment variable.

Defaults to none.

For file-processing commands, selects the internal CLI log format: pretty, compact, or json.

Uses the BIOME_LOG_KIND environment variable.

Defaults to pretty.