(mut self, pattern: impl Into<String>)
| 165 | /// produced by the watcher. |
| 166 | #[must_use] |
| 167 | pub fn with_ignore_pattern(mut self, pattern: impl Into<String>) -> Self { |
| 168 | self.ignore_patterns.push(pattern.into()); |
| 169 | self |
| 170 | } |
| 171 | |
| 172 | /// Returns the repository root path. |
| 173 | pub fn repo_root(&self) -> &Path { |