From 0c4471e06cdf5c7c168b63b26aab24f580bad35c Mon Sep 17 00:00:00 2001 From: Sydney Idundun <76040196+SydneyTechnologies@users.noreply.github.com> Date: Thu, 26 Mar 2026 14:16:44 +0400 Subject: [PATCH] Fix syntax for acceptedAttributes and acceptedTags in README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e37a5cf..e52887a 100644 --- a/README.md +++ b/README.md @@ -683,10 +683,10 @@ export default defineConfig({ // options for linter lint: { /** Optional accept-list of JSX attribute names to exclusively lint (takes precedence over ignoredAttributes). */ - acceptedAttributes: ['title']; + acceptedAttributes: ['title'], /** Optional accept-list of JSX tag names to exclusively lint (takes precedence over ignoredTags). */ - acceptedTags: ['p']; + acceptedTags: ['p'], // Optional custom JSX attributes to ignore during linting ignoredAttributes: ['data-testid', 'aria-label'],