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/lint.rs | |
parent | 681bb49d0df0865a6564741544869a57aab56bb1 (diff) |
refactor: create `args` folder (#14982)
Diffstat (limited to 'cli/tools/lint.rs')
-rw-r--r-- | cli/tools/lint.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tools/lint.rs b/cli/tools/lint.rs index f251dc647..60cda9f90 100644 --- a/cli/tools/lint.rs +++ b/cli/tools/lint.rs @@ -6,9 +6,9 @@ //! At the moment it is only consumed using CLI but in //! the future it can be easily extended to provide //! the same functions as ops available in JS runtime. -use crate::config_file::LintConfig; +use crate::args::LintConfig; +use crate::args::{Flags, LintFlags}; use crate::file_watcher::ResolutionResult; -use crate::flags::{Flags, LintFlags}; use crate::fmt_errors; use crate::fs_util::{collect_files, is_supported_ext, specifier_to_file_path}; use crate::proc_state::ProcState; @@ -590,7 +590,7 @@ mod test { use deno_lint::rules::get_recommended_rules; use super::*; - use crate::config_file::LintRulesConfig; + use crate::args::LintRulesConfig; #[test] fn recommended_rules_when_no_tags_in_config() { |