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
Currently deno lint supports two distinct ways of ignoring diagnostics on next line:
eslint-disable-next-line
deno-lint-ignore
In denoland/deno_lint#476@nayeemrmn suggests to make deno-lint-ignore take into account whole AST node which would render eslint-disable-next-line irrelevant. Additionally supporting eslint's directive leads to a subtle bug in deno_lint (denoland/deno_lint#287).
I believe we should remove support for eslint-disable-next-line and stay only with deno-lint-ignore.
The text was updated successfully, but these errors were encountered:
Currently
deno lint
supports two distinct ways of ignoring diagnostics on next line:eslint-disable-next-line
deno-lint-ignore
In denoland/deno_lint#476 @nayeemrmn suggests to make
deno-lint-ignore
take into account whole AST node which would rendereslint-disable-next-line
irrelevant. Additionally supporting eslint's directive leads to a subtle bug indeno_lint
(denoland/deno_lint#287).I believe we should remove support for
eslint-disable-next-line
and stay only withdeno-lint-ignore
.The text was updated successfully, but these errors were encountered: