diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2020-09-09 23:45:31 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 16:45:31 +0200 |
commit | 857f9b32e02c876e9cce6e82f82fb6ed95248646 (patch) | |
tree | 85bcb5f2215228c932690fd229e3a52d01335b85 /cli/flags.rs | |
parent | 1fcbf9cb8a2aa330ddc95c1481976b9e06ca994c (diff) |
feat(fmt, lint): show number of checked files (#7312)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index 835be0041..443411bc3 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -1732,7 +1732,7 @@ mod tests { subcommand: DenoSubcommand::Fmt { ignore: vec![], check: false, - files: vec!["script_1.ts".to_string(), "script_2.ts".to_string()] + files: vec!["script_1.ts".to_string(), "script_2.ts".to_string()], }, ..Flags::default() } |