Skip to content

Commit

Permalink
Fix default of max-positional-args
Browse files Browse the repository at this point in the history
  • Loading branch information
tmke8 authored Feb 5, 2024
1 parent 7390232 commit ed71c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ruff_workspace/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@ pub struct PylintOptions {
///
/// If not specified, defaults to the value of `max-args`.
#[option(
default = r"3",
default = r"5", // Needs to be in sync with default of `max-args`.
value_type = "int",
example = r"max-positional-args = 3"
)]
Expand Down

0 comments on commit ed71c08

Please sign in to comment.