-
Can we specify the default values for the available options section of the Additionally, it would be great to add more information regarding these default values in the Continuous Integration recipe. I can open a PR once provided this information for all three parameters. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You could say that their default values are This means that if these options aren't passed via CLI, Biome will send the values coming from its defaults/config file. If these options are passed, they will override the values accordingly.
The CLI reference page is auto-generated from the source code, so you would want to update the source comments: https://github.com/biomejs/biome/blob/main/crates/biome_cli/src/commands/mod.rs#L68 |
Beta Was this translation helpful? Give feedback.
You could say that their default values are
undefined
because they are optional options. These options are meant to override the values coming from Biome's default and/orbiome.json
.This means that if these options aren't passed via CLI, Biome will send the values coming from its defaults/config file. If these options are passed, they will override the values accordingly.
The CLI reference page is auto-generated from the source code, so you would want to update the source comments: https://github.com/biomejs/biome/blob/main/crates/biome_cli/src/commands/mod.rs#L68