(&self, path: &str)
| 2171 | } |
| 2172 | |
| 2173 | fn path_ignored_for_import(&self, path: &str) -> bool { |
| 2174 | !self.ignore_matcher.is_empty() && self.ignore_matcher.matches(path) |
| 2175 | } |
| 2176 | |
| 2177 | fn file_ignored_for_import(&self, file: &ParsedFile) -> bool { |
| 2178 | match file.operation { |
no test coverage detected