denoland / deno_lint

Blazing fast linter for JavaScript and TypeScript written in Rust
https://lint.deno.land/
MIT License
1.51k stars 163 forks source link

expect `no-undef` support comment declare like eslint #1287

Open samegek opened 2 weeks ago

samegek commented 2 weeks ago

it should ok, because gloabl decalre, but error deno lint --rules-include=no-undef a.js

/* global a */
let b = 1
let c = a + b

output error[no-undef]: a is not defined

it should output error, a is not defined, but ok use deno lint --rules-include=no-undef a.js

if(typeof a === "string"){console.log("hello")}