argsIgnorePattern - https://eslint.org/docs/latest/rules/no-unused-vars#argsignorepattern - should work fine.
destructuredArrayIgnorePattern - https://eslint.org/docs/latest/rules/no-unused-vars#destructuredarrayignorepattern
- Had issues on laptop (Windows + WSL) - still reported a warning from the eslint
no-unused-vars rule directly, not the @typescript-eslint wrapper (which is what warned for arguments)
- Test case (should not warn for
_b if rule is properly suppressed):
const [a, _b, c] = ["a", "b", "c"];
console.log(a+c);
argsIgnorePattern- https://eslint.org/docs/latest/rules/no-unused-vars#argsignorepattern - should work fine.destructuredArrayIgnorePattern- https://eslint.org/docs/latest/rules/no-unused-vars#destructuredarrayignorepatternno-unused-varsrule directly, not the@typescript-eslintwrapper (which is what warned for arguments)_bif rule is properly suppressed):@typescript-eslintwrapper docs@typescript-eslintshould turn off regulareslintrule, per docs and source code