We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10cd49 commit fb553eeCopy full SHA for fb553ee
crates/biome_cli/src/execute/process_file/search.rs
@@ -82,6 +82,8 @@ fn is_file_compatible_with_pattern(
82
) -> bool {
83
match pattern_language {
84
GritTargetLanguage::JsTargetLanguage(_) => matches!(file_source, DocumentFileSource::Js(_)),
85
- GritTargetLanguage::CssTargetLanguage(_) => matches!(file_source, DocumentFileSource::Css(_)),
+ GritTargetLanguage::CssTargetLanguage(_) => {
86
+ matches!(file_source, DocumentFileSource::Css(_))
87
+ }
88
}
89
0 commit comments