diff options
author | Zheyu Zhang <zheyuzhang03@gmail.com> | 2021-11-29 22:17:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 09:17:57 -0500 |
commit | bd989143e1a23366edb53b6b543eeb0ae0ff3e51 (patch) | |
tree | 6263637b32e80ef3b2258778996d664c418f213c /cli/tools/lint.rs | |
parent | 4a13c320d73b1d8a0da18effa81199ab2ea8ef55 (diff) |
refactor(cli): simplify lint/format resolver logic (#12898)
Diffstat (limited to 'cli/tools/lint.rs')
-rw-r--r-- | cli/tools/lint.rs | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/cli/tools/lint.rs b/cli/tools/lint.rs index b7ae88e4f..4a7e0115e 100644 --- a/cli/tools/lint.rs +++ b/cli/tools/lint.rs @@ -112,27 +112,25 @@ pub async fn lint( let resolver = |changed: Option<Vec<PathBuf>>| { let files_changed = changed.is_some(); - let collect_files = - collect_files(&include_files, &exclude_files, is_supported_ext); + let result = + collect_files(&include_files, &exclude_files, is_supported_ext).map( + |files| { + if let Some(paths) = changed { + files + .iter() + .any(|path| paths.contains(path)) + .then(|| files) + .unwrap_or_else(|| [].to_vec()) + } else { + files + } + }, + ); let paths_to_watch = include_files.clone(); - let (result, should_relint) = match collect_files { - Ok(value) => { - if let Some(paths) = changed { - ( - Ok(value.clone()), - Some(value.iter().any(|path| paths.contains(path))), - ) - } else { - (Ok(value), None) - } - } - Err(e) => (Err(e), None), - }; - async move { - if files_changed && matches!(should_relint, Some(false)) { + if files_changed && matches!(result, Ok(ref files) if files.is_empty()) { ResolutionResult::Ignore } else { ResolutionResult::Restart { |