You may prefer to disallow some attributes for various reasons in templates, this simply allows you to create such a denylist.
This rule disallows a list of attributes within templates.
The following patterns are considered warnings:
/*eslint lit/ban-attributes: ["error", "attr"] */
html`<x-foo attr>`;
The following patterns are not warnings:
html`<x-foo attr>`;
If you don't have any particular attributes you wish to disallow, you do not need this rule.