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/main.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/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 8e819927e..193a8df81 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -331,7 +331,7 @@ async fn lint_command(flags: Flags, files: Vec<String>) -> Result<(), ErrBox> { )?; state.check_unstable("lint"); - lint::lint_files(files) + lint::lint_files(files).await } async fn cache_command(flags: Flags, files: Vec<String>) -> Result<(), ErrBox> { |