summaryrefslogtreecommitdiff
path: root/cli/fmt.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-07-11 11:47:06 +0200
committerGitHub <noreply@github.com>2020-07-11 11:47:06 +0200
commit98f6a5a47d6b47b1ac7f09a2923d6051de7aca70 (patch)
tree5d1da6d8818340ec0df6e93e2d08fe1cfedc3e61 /cli/fmt.rs
parent5ec41cbcc2778a80b6ee91f0c391fc2edec0a8e0 (diff)
chore: upgrade deno_lint, remove direct dprint dep (#6679)
This PR removes direct dependency on dprint-plugin-typescript and swc_ecma_visit. Both of these dependencies have been pushed out to deno_lint crate. This should make it a bit easier to do the upgrades and prevent having conflicting crate requirements.
Diffstat (limited to 'cli/fmt.rs')
-rw-r--r--cli/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/fmt.rs b/cli/fmt.rs
index b41ef0d45..59239ec17 100644
--- a/cli/fmt.rs
+++ b/cli/fmt.rs
@@ -9,10 +9,10 @@
use crate::colors;
use crate::diff::diff;
+use crate::dprint_plugin_typescript as dprint;
use crate::fs::files_in_subtree;
use crate::op_error::OpError;
use deno_core::ErrBox;
-use dprint_plugin_typescript as dprint;
use std::fs;
use std::io::stdin;
use std::io::stdout;