Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jun 1, 2021
1 parent ae2836d commit c23ae0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/lsp/lsp_custom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use deno_core::serde::Deserialize;
use deno_core::serde::Serialize;
use lspower::lsp;

pub const CACHE_REQUEST: &'static str = "deno/cache";
pub const PERFORMANCE_REQUEST: &'static str = "deno/performance";
pub const RELOAD_IMPORT_REGISTRIES_REQUEST: &'static str =
pub const CACHE_REQUEST: &str = "deno/cache";
pub const PERFORMANCE_REQUEST: &str = "deno/performance";
pub const RELOAD_IMPORT_REGISTRIES_REQUEST: &str =
"deno/reloadImportRegistries";
pub const VIRTUAL_TEXT_DOCUMENT: &'static str = "deno/virtualTextDocument";
pub const VIRTUAL_TEXT_DOCUMENT: &str = "deno/virtualTextDocument";

#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
Expand Down

0 comments on commit c23ae0e

Please sign in to comment.