Skip to content

Commit

Permalink
chore!: remove unused flags on LSP command (#2170)
Browse files Browse the repository at this point in the history
chore: remove unused flags on LSP command
  • Loading branch information
TomAFrench authored Aug 4, 2023
1 parent efec20a commit ccba78e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/nargo_cli/src/cli/lsp_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@ use async_lsp::{
};
use clap::Args;
use noir_lsp::NargoLspService;
use noirc_driver::CompileOptions;
use tokio::io::BufReader;
use tower::ServiceBuilder;

use super::NargoConfig;
use crate::errors::CliError;

#[derive(Debug, Clone, Args)]
pub(crate) struct LspCommand {
#[clap(flatten)]
compile_options: CompileOptions,
}
pub(crate) struct LspCommand;

pub(crate) fn run<B: Backend>(
// Backend is currently unused, but we might want to use it to inform the lsp in the future
Expand Down

0 comments on commit ccba78e

Please sign in to comment.