ban-untagged-ignore
NOTE: this rule is part of the
recommended
rule set.Enable full set in
deno.json
:{ "lint": { "rules": { "tags": ["recommended"] } } }
Enable full set using the Deno CLI:
deno lint --rules-tags=recommended
This rule can be explictly included to or excluded from the rules present in the current tag by adding it to the
include
or exclude
array in deno.json
:{ "lint": { "rules": { "include": ["ban-untagged-ignore"], "exclude": ["ban-untagged-ignore"] } } }
Requires deno-lint-ignore
to be annotated with one or more rule names.
Ignoring all rules can mask unexpected or future problems. Therefore you need to explicitly specify which rule(s) are to be ignored.
Invalid:
// deno-lint-ignore
export function duplicateArgumentsFn(a, b, a) {}
Valid:
// deno-lint-ignore no-dupe-args
export function duplicateArgumentsFn(a, b, a) {}