CB7UPUQFOUH6M32KXQZL25EV4IH3XSK56RG3OYNRZBBFEABSNCXQC
H72JG6HLA7U3XFOUMWF6F3NFSWK5B6ZM6J5ZTILRSXBA7IM6H75AC
SXEYMYF7P4RZMZ46WPL4IZUTSQ2ATBWYZX7QNVMS3SGOYXYOHAGQC
Q7CHNDXNVJCBL2DK7LYZ6KSRFN4KO6TXKEP3GIWDJHB6JPSE3FUQC
TFPETWTVADLG2DL7WERHJPGMJVOY4WOKCRWB3NZ3YOOQ4CVAUHBAC
5BB266P6HPUGYEVR7QNNOA62EFPYPUYJ3UMLE5J3LLYMSUWXANIQC
// Static KV map of names for project kinds |-> elements
dot_ignore.write(default_ignore)?; dot_ignore.write(b"\n")?;
dot_ignore.write(default_ignore)?;
dot_ignore.write(b"\n")?;
dot_ignore.write_all(default_ignore)?; dot_ignore.write_all(b"\n")?;
dot_ignore.write_all(default_ignore)?;
dot_ignore.write_all(b"\n")?;
if let Ok((config, _)) = crate::config::Global::load() { let ignore_kinds = config.ignore_kinds.as_ref(); if let Some(kinds) = ignore_kinds.and_then(|x| x.get(kind)) { for entry in kinds.iter() { writeln!(dot_ignore, "{}", entry)?; } return Ok(()); } }
if let Ok((config, _)) = crate::config::Global::load() {
let ignore_kinds = config.ignore_kinds.as_ref();
if let Some(kinds) = ignore_kinds.and_then(|x| x.get(kind)) {
for entry in kinds.iter() {
writeln!(dot_ignore, "{}", entry)?;
}
return Ok(());
dot_ignore.write(entry)?; dot_ignore.write(b"\n")?;
dot_ignore.write(entry)?;
dot_ignore.write_all(entry)?; dot_ignore.write_all(b"\n")?;
dot_ignore.write_all(entry)?;
pub ignore_kinds: Option<HashMap<String, Vec<String>>>,