Get the path to the global ignore file.
()
| 438 | |
| 439 | /// Get the path to the global ignore file. |
| 440 | pub fn global_ignore_path() -> Option<std::path::PathBuf> { |
| 441 | atomic_config::global_config_dir().map(|p| p.join("ignore")) |
| 442 | } |
| 443 | |
| 444 | /// Get the path to the local ignore file for a repository. |
| 445 | pub fn local_ignore_path(repo_root: &Path) -> std::path::PathBuf { |