Skip to content

Commit b8e0cb0

Browse files
committed
progress
1 parent 0ddba19 commit b8e0cb0

File tree

1 file changed

+1
-9
lines changed
  • crates/pgls_cli/src/commands

1 file changed

+1
-9
lines changed

crates/pgls_cli/src/commands/mod.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate::cli_options::{CliOptions, CliReporter, ColorsArg, cli_options};
33
use crate::logging::LoggingKind;
44
use crate::{CliDiagnostic, LoggingLevel, VERSION};
55
use bpaf::Bpaf;
6-
use pgls_configuration::{PartialConfiguration, RuleSelector, partial_configuration};
6+
use pgls_configuration::{PartialConfiguration, partial_configuration};
77
use pgls_fs::FileSystem;
88
use pgls_workspace::DynRef;
99
use std::ffi::OsString;
@@ -69,14 +69,6 @@ pub enum PgLSCommand {
6969
/// Single file, single path or list of paths
7070
#[bpaf(positional("PATH"), many)]
7171
paths: Vec<OsString>,
72-
73-
/// When provided, only the specified groups or rules will be executed.
74-
#[bpaf(long("only"), argument("GROUP|RULE"))]
75-
only: Vec<RuleSelector>,
76-
77-
/// When provided, the specified groups or rules will be skipped during execution.
78-
#[bpaf(long("skip"), argument("GROUP|RULE"))]
79-
skip: Vec<RuleSelector>,
8072
},
8173

8274
/// Starts the daemon server process.

0 commit comments

Comments
 (0)