summaryrefslogtreecommitdiff
path: root/cli/lint.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-11-16 20:48:50 +0100
committerGitHub <noreply@github.com>2020-11-16 20:48:50 +0100
commit636af2850c90f6bf7005a270d95b68bc9718de75 (patch)
tree9ebffa025237f1ef42226e3168780beac2768b95 /cli/lint.rs
parent8ab20a4582016542ac3d8140593f817ab920005f (diff)
refactor(cli): rename fs module to fs_util (#8380)
This commit renames "fs" module in "cli/" to "fs_util". This is purely cosmetic change; there were a few places which aliased "crate::fs" to "deno_fs" which was very confusing with "fs" module in ops.
Diffstat (limited to 'cli/lint.rs')
-rw-r--r--cli/lint.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lint.rs b/cli/lint.rs
index 1ac680bac..e319a7be6 100644
--- a/cli/lint.rs
+++ b/cli/lint.rs
@@ -10,7 +10,7 @@ use crate::ast;
use crate::colors;
use crate::fmt::run_parallelized;
use crate::fmt_errors;
-use crate::fs::{collect_files, is_supported_ext};
+use crate::fs_util::{collect_files, is_supported_ext};
use crate::media_type::MediaType;
use deno_core::error::{generic_error, AnyError, JsStackFrame};
use deno_core::serde_json;