mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-24 13:33:50 +00:00
Update docs Settings output-format default (#12409)
## Update docs Settings output-format default
Fixes https://github.com/astral-sh/ruff/issues/12350
## Test Plan
Run all automation mentioned here
fe04f2b09d/CONTRIBUTING.md (development)
Manually verified changes in the generated MkDocs site.
Co-authored-by: Oleksandr Zavertniev <oleksandr.zavertniev@yellowbrick.com>
This commit is contained in:
parent
d8cf8ac2ef
commit
ca22248628
2 changed files with 4 additions and 4 deletions
|
@ -74,13 +74,13 @@ pub struct Options {
|
|||
)]
|
||||
pub extend: Option<String>,
|
||||
|
||||
/// The style in which violation messages should be formatted: `"full"`
|
||||
/// (shows source), `"concise"` (default), `"grouped"` (group messages by file), `"json"`
|
||||
/// The style in which violation messages should be formatted: `"full"` (default)
|
||||
/// (shows source), `"concise"`, `"grouped"` (group messages by file), `"json"`
|
||||
/// (machine-readable), `"junit"` (machine-readable XML), `"github"` (GitHub
|
||||
/// Actions annotations), `"gitlab"` (GitLab CI code quality report),
|
||||
/// `"pylint"` (Pylint text format) or `"azure"` (Azure Pipeline logging commands).
|
||||
#[option(
|
||||
default = r#""concise""#,
|
||||
default = r#""full""#,
|
||||
value_type = r#""full" | "concise" | "grouped" | "json" | "junit" | "github" | "gitlab" | "pylint" | "azure""#,
|
||||
example = r#"
|
||||
# Group violations by containing file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue