We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a999c commit 84eb0c6Copy full SHA for 84eb0c6
documentation/docs/05-misc/02-accessibility-warnings.md
@@ -11,6 +11,13 @@ Some warnings may be incorrect in your concrete use case. You can disable such f
11
<input autofocus />
12
```
13
14
+You can list multiple rules in a single comment, and add an explanatory note alongside them:
15
+
16
+```svelte
17
+<!-- svelte-ignore a11y-click-events-have-key-events a11y-no-static-element-interactions (because of reasons) -->
18
+<div on:click>...</div>
19
+```
20
21
Here is a list of accessibility checks Svelte will do for you.
22
23
## `a11y-accesskey`
0 commit comments