(&self, path: &str)
| 2179 | } |
| 2180 | |
| 2181 | fn path_ignored_for_import(&self, path: &str) -> bool { |
| 2182 | !self.ignore_matcher.is_empty() && self.ignore_matcher.matches(path) |
| 2183 | } |
| 2184 | |
| 2185 | fn file_ignored_for_import(&self, file: &ParsedFile) -> bool { |
| 2186 | match file.operation { |
no test coverage detected