Skip to content

Commit b9465f1

Browse files
committed
Remove dangling types
1 parent fe8b0a6 commit b9465f1

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

crates/ark/src/lsp/config.rs

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -112,34 +112,6 @@ pub enum IndentStyle {
112112
Space,
113113
}
114114

115-
/// VS Code representation of a document configuration
116-
#[derive(Serialize, Deserialize, Clone, Debug)]
117-
pub(crate) struct VscDocumentConfig {
118-
// DEV NOTE: Update `section_from_key()` method after adding a field
119-
pub insert_spaces: bool,
120-
pub indent_size: VscIndentSize,
121-
pub tab_size: usize,
122-
}
123-
124-
#[derive(Serialize, Deserialize, Clone, Debug)]
125-
pub(crate) struct VscDiagnosticsConfig {
126-
// DEV NOTE: Update `section_from_key()` method after adding a field
127-
pub enable: bool,
128-
}
129-
130-
#[derive(Serialize, Deserialize, Clone, Debug)]
131-
pub(crate) struct VscSymbolsConfig {
132-
// DEV NOTE: Update `section_from_key()` method after adding a field
133-
pub include_assignments_in_blocks: bool,
134-
}
135-
136-
#[derive(Serialize, Deserialize, Clone, Debug)]
137-
#[serde(untagged)]
138-
pub(crate) enum VscIndentSize {
139-
Alias(String),
140-
Size(usize),
141-
}
142-
143115
impl Default for SymbolsConfig {
144116
fn default() -> Self {
145117
Self {

0 commit comments

Comments
 (0)