mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
refactor(cli): simplify lint/format resolver logic (#12898)
This commit is contained in:
parent
4a13c320d7
commit
bd989143e1
2 changed files with 39 additions and 42 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue