Test and filter data draft

This commit is contained in:
Kirill Bulatov 2023-11-10 15:23:08 +02:00
parent a5c615ceb4
commit 7d97dfa6be
4 changed files with 186 additions and 32 deletions

View file

@ -10,6 +10,12 @@ pub struct ProjectSettings {
pub lsp: HashMap<Arc<str>, LspSettings>,
#[serde(default)]
pub git: GitSettings,
// TODO kb better names and docs
// TODO kb how to react on their changes?
#[serde(default)]
pub scan_exclude_files: Vec<String>,
#[serde(default)]
pub scan_include_files: Vec<String>,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, JsonSchema)]