You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I also did "deno lint --rules" and "no-undef" was NOT included in the list on available rules. However, when I added it to my deno.json it started to work properly. How are newcomers to deno project supposed to understand this?
echo -e "foo()\nlet x" > test.js
deno lint test.js
Deno lint finds the unused "x" but it doesn't warn me that I forgot to import foo().
If I try eslint (npx eslint test.js) instead, it immediately says:
1:1 error 'foo' is not defined no-undef
i'm using deno 2.0.6
The text was updated successfully, but these errors were encountered: