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:
Sashko 2024-07-19 19:51:46 +02:00 committed by GitHub
parent d8cf8ac2ef
commit ca22248628
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -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.