diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cli/main.rs b/cli/main.rs index 4a87db922..3a6000c2b 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -719,9 +719,11 @@ pub fn main() { DenoSubcommand::Cache { files } => { cache_command(flags, files).boxed_local() } - DenoSubcommand::Fmt { check, files } => { - fmt::format(files, check).boxed_local() - } + DenoSubcommand::Fmt { + check, + files, + ignore, + } => fmt::format(files, check, ignore).boxed_local(), DenoSubcommand::Info { file, json } => { info_command(flags, file, json).boxed_local() } |