Skip to content

Commit

Permalink
Remove "default" remark from ruff check
Browse files Browse the repository at this point in the history
Should have been removed in the deprecation PR astral-sh#10169.
  • Loading branch information
mihaic committed Oct 24, 2024
1 parent 2c57c2d commit e006aa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/ruff/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pub struct Args {
#[allow(clippy::large_enum_variant)]
#[derive(Debug, clap::Subcommand)]
pub enum Command {
/// Run Ruff on the given files or directories (default).
/// Run Ruff on the given files or directories.
Check(CheckCommand),
/// Explain a rule (or all rules).
#[command(group = clap::ArgGroup::new("selector").multiple(false).required(true))]
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ Ruff: An extremely fast Python linter and code formatter.
Usage: ruff [OPTIONS] <COMMAND>
Commands:
check Run Ruff on the given files or directories (default)
check Run Ruff on the given files or directories
rule Explain a rule (or all rules)
config List or describe the available configuration options
linter List all supported upstream linters
Expand Down

0 comments on commit e006aa4

Please sign in to comment.