diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2021-11-16 09:02:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-16 09:02:28 -0500 |
| commit | b2036a4db71afd67a78f932528143fb07faea538 (patch) | |
| tree | a78612e8868609af7aa6fe9ecf49d3ab0c42c9da /cli/tools/lint.rs | |
| parent | f9f9ddc5e308809343bbf5c07d4487df5a1b93cf (diff) | |
refactor: re-export anyhow from deno_core (#12777)
Diffstat (limited to 'cli/tools/lint.rs')
| -rw-r--r-- | cli/tools/lint.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/tools/lint.rs b/cli/tools/lint.rs index 4a1f25dd4..ec42adc34 100644 --- a/cli/tools/lint.rs +++ b/cli/tools/lint.rs @@ -14,7 +14,10 @@ use crate::fs_util::{collect_files, is_supported_ext}; use crate::tools::fmt::run_parallelized; use crate::{colors, file_watcher}; use deno_ast::MediaType; -use deno_core::error::{anyhow, generic_error, AnyError, JsStackFrame}; +use deno_core::anyhow::anyhow; +use deno_core::error::generic_error; +use deno_core::error::AnyError; +use deno_core::error::JsStackFrame; use deno_core::serde_json; use deno_lint::diagnostic::LintDiagnostic; use deno_lint::linter::Linter; |
