From b1e901b65f3980a62830bbe887f3f9acb4d6c2e9 Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Sun, 27 Nov 2022 17:13:03 +0000 Subject: [PATCH] chore (ban-attributes): correct docs name (#144) --- docs/rules/ban-attributes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/ban-attributes.md b/docs/rules/ban-attributes.md index 5c3e344..59db2af 100644 --- a/docs/rules/ban-attributes.md +++ b/docs/rules/ban-attributes.md @@ -1,4 +1,4 @@ -# Disallows a set of attributes from being used (attribute-denylist) +# Disallows a set of attributes from being used (ban-attributes) You may prefer to disallow some attributes for various reasons in templates, this simply allows you to create such a denylist. @@ -10,7 +10,7 @@ This rule disallows a list of attributes within templates. The following patterns are considered warnings: ```ts -/*eslint lit/attribute-denylist: ["error", "attr"] */ +/*eslint lit/ban-attributes: ["error", "attr"] */ html``; ```