Get the path to the global ignore file.
()
| 367 | |
| 368 | /// Get the path to the global ignore file. |
| 369 | pub fn global_ignore_path() -> Option<std::path::PathBuf> { |
| 370 | atomic_config::global_config_dir().map(|p| p.join("ignore")) |
| 371 | } |
| 372 | |
| 373 | /// Get the path to the local ignore file for a repository. |
| 374 | pub fn local_ignore_path(repo_root: &Path) -> std::path::PathBuf { |