Skip to content

Commit

Permalink
Update docs Settings output-format default (#12409)
Browse files Browse the repository at this point in the history
## Update docs Settings output-format default

Fixes #12350

## Test Plan

Run all automation mentioned here
https://github.com/astral-sh/ruff/blob/fe04f2b09d0b676f1fa09f732e907ef64deffbb1/CONTRIBUTING.md#development

Manually verified changes in the generated MkDocs site.

Co-authored-by: Oleksandr Zavertniev <oleksandr.zavertniev@yellowbrick.com>
  • Loading branch information
sashko1988 and Oleksandr Zavertniev authored Jul 19, 2024
1 parent d8cf8ac commit ca22248
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crates/ruff_workspace/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ruff.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ca22248

Please sign in to comment.