docs(cli): Clarify help string for 'exclude'

Fixes #269
This commit is contained in:
Ed Page 2021-06-03 20:03:52 -05:00
parent 592b36d23c
commit 6365eeb0ce

View file

@ -200,8 +200,8 @@ impl ConfigArgs {
#[derive(Debug, StructOpt)]
#[structopt(rename_all = "kebab-case")]
pub(crate) struct WalkArgs {
#[structopt(long)]
/// Ignore all files & directories matching the pattern.
#[structopt(long, name = "GLOB")]
/// Ignore files & directories matching the glob.
exclude: Vec<String>,
#[structopt(long, overrides_with("no-hidden"))]