diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-06-27 16:54:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 16:54:09 -0400 |
commit | e1c90963fbbf6571ae1b66971b83159681928ec3 (patch) | |
tree | 4bbf86a50776a512e966a9efba3cef044b00152d /cli/tools/fmt.rs | |
parent | 681bb49d0df0865a6564741544869a57aab56bb1 (diff) |
refactor: create `args` folder (#14982)
Diffstat (limited to 'cli/tools/fmt.rs')
-rw-r--r-- | cli/tools/fmt.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tools/fmt.rs b/cli/tools/fmt.rs index 7758f29f9..b2aa47373 100644 --- a/cli/tools/fmt.rs +++ b/cli/tools/fmt.rs @@ -7,16 +7,16 @@ //! the future it can be easily extended to provide //! the same functions as ops available in JS runtime. +use crate::args::Flags; +use crate::args::FmtConfig; +use crate::args::FmtFlags; +use crate::args::FmtOptionsConfig; +use crate::args::ProseWrap; use crate::colors; -use crate::config_file::FmtConfig; -use crate::config_file::FmtOptionsConfig; -use crate::config_file::ProseWrap; use crate::deno_dir::DenoDir; use crate::diff::diff; use crate::file_watcher; use crate::file_watcher::ResolutionResult; -use crate::flags::Flags; -use crate::flags::FmtFlags; use crate::fs_util::collect_files; use crate::fs_util::get_extension; use crate::fs_util::specifier_to_file_path; |