From c5ec3a77303975aefbcd54eb151aa65c02d2223d Mon Sep 17 00:00:00 2001 From: Andrew Frantz Date: Wed, 23 Oct 2024 12:37:01 -0400 Subject: [PATCH] docs: clarify use of --except (#37) * docs: clarify use of --except * Update check.rs --- src/commands/check.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/check.rs b/src/commands/check.rs index 0fab573..bf558f4 100644 --- a/src/commands/check.rs +++ b/src/commands/check.rs @@ -33,7 +33,8 @@ pub struct Common { #[arg(required = true)] pub paths: Vec, - /// Lint rules to except from running. + /// A single rule ID to except from running. Can be specified multiple + /// times. #[arg(short, long, value_name = "RULE")] pub except: Vec,