Use a better name

This commit is contained in:
Kirill Bulatov 2023-11-15 19:09:58 +02:00
parent 5f468970f0
commit 30fefa0ef8
4 changed files with 19 additions and 19 deletions

View file

@ -10,9 +10,9 @@ pub struct ProjectSettings {
pub lsp: HashMap<Arc<str>, LspSettings>,
#[serde(default)]
pub git: GitSettings,
// TODO kb better names and docs and tests
// TODO kb docs and project_search test
#[serde(default)]
pub scan_exclude_files: Option<Vec<String>>,
pub file_scan_exclusions: Option<Vec<String>>,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, JsonSchema)]