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 8a1b124 commit 7166911Copy full SHA for 7166911
src/tsconfig/file_matcher.rs
@@ -114,10 +114,7 @@ impl TsconfigFileMatcher {
114
fn normalize_patterns(patterns: Vec<String>, tsconfig_dir: &Path) -> Vec<String> {
115
patterns
116
.into_iter()
117
- .flat_map(|
118
- #[cfg_attr(not(target_os = "windows"), allow(unused_mut))]
119
- mut pattern
120
- | {
+ .flat_map(|#[cfg_attr(not(target_os = "windows"), allow(unused_mut))] mut pattern| {
121
// On Windows, convert to lowercase for case-insensitive matching
122
#[cfg(target_os = "windows")]
123
{
0 commit comments