Skip to content

Commit

Permalink
fix(deno-lint): remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
LongYinan committed Aug 31, 2020
1 parent 69e18d8 commit 9be8e9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/deno-lint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ fn lint_command(ctx: CallContext) -> Result<JsBoolean> {
if !p.is_dir() {
let file_content = fs::read_to_string(&p)
.map_err(|e| Error::from_reason(format!("Read file {:?} failed: {}", p, e)))?;
println!("{:?}", &p);
let mut linter = LinterBuilder::default()
.rules(if enable_all_rules {
get_all_rules()
Expand Down

0 comments on commit 9be8e9a

Please sign in to comment.