diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-21 18:36:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 18:36:37 +0200 |
commit | 92edc364426ddb4c80292ebe7e702c02f9344c5b (patch) | |
tree | 2fb92cdd08b0d10a59a2cd4b4820f7afbca17486 /cli/lint.rs | |
parent | 9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff) |
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/lint.rs')
-rw-r--r-- | cli/lint.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lint.rs b/cli/lint.rs index 7190192dc..3b337fe7f 100644 --- a/cli/lint.rs +++ b/cli/lint.rs @@ -14,6 +14,7 @@ use crate::fmt_errors; use crate::media_type::MediaType; use deno_core::error::generic_error; use deno_core::error::AnyError; +use deno_core::serde_json; use deno_lint::diagnostic::LintDiagnostic; use deno_lint::linter::Linter; use deno_lint::linter::LinterBuilder; |