Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "default" remark from ruff check #13900

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -557,7 +557,7 @@ Or `ruff help check` for more on the linting command:
<!-- Begin auto-generated check help. -->

```text
Run Ruff on the given files or directories (default)
Run Ruff on the given files or directories

Usage: ruff check [OPTIONS] [FILES]...

Expand Down
Loading