Add default scan excluded files settings

This commit is contained in:
Kirill Bulatov 2023-11-14 22:55:06 +02:00
parent c52fe2f536
commit 26f7e66b49
4 changed files with 15 additions and 3 deletions

View file

@ -12,7 +12,7 @@ pub struct ProjectSettings {
pub git: GitSettings,
// TODO kb better names and docs and tests
#[serde(default)]
pub scan_exclude_files: Vec<String>,
pub scan_exclude_files: Option<Vec<String>>,
}
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize, JsonSchema)]