We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5c2136 commit b548a24Copy full SHA for b548a24
ci/src/cli/mod.rs
@@ -87,11 +87,7 @@ enum Commands {
87
about = "Start LSP server for IDE integration",
88
long_about = "Starts a Language Server Protocol (LSP) server that provides CODEOWNERS information to supported editors"
89
)]
90
- Lsp {
91
- /// Use stdio for LSP communication (passed by VS Code)
92
- #[arg(long, hide = true)]
93
- stdio: bool,
94
- },
+ Lsp,
95
}
96
97
#[derive(Subcommand, PartialEq, Debug)]
@@ -296,7 +292,7 @@ pub fn cli_match() -> Result<()> {
296
292
297
293
Commands::Config => commands::config::run()?,
298
294
#[cfg(feature = "lsp")]
299
- Commands::Lsp { stdio: _ } => commands::lsp::run()?,
295
+ Commands::Lsp => commands::lsp::run()?,
300
301
302
Ok(())
0 commit comments