diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-06-12 01:44:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 01:44:17 +0200 |
commit | e7054d50f0992103a8810bb012179235fb30e0fe (patch) | |
tree | 4ba5b0a871ca3356a3d464af1144dd648a1dd991 /cli/fmt.rs | |
parent | 6ccf9037a6b36c81ea0e6ac12d0e2dbd793f6114 (diff) |
update: deno_lint to v0.1.10 (#6248)
* update: deno lint to v0.1.10
* Parallelize "deno lint" subcommand
Diffstat (limited to 'cli/fmt.rs')
-rw-r--r-- | cli/fmt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/fmt.rs b/cli/fmt.rs index 229039606..96ca285c1 100644 --- a/cli/fmt.rs +++ b/cli/fmt.rs @@ -264,7 +264,7 @@ fn write_file_contents( Ok(fs::write(file_path, file_text)?) } -async fn run_parallelized<F>( +pub async fn run_parallelized<F>( file_paths: Vec<PathBuf>, f: F, ) -> Result<(), ErrBox> |