mirror of https://github.com/sveltejs/svelte
Merge pull request #1112 from sveltejs/gh-1110
do not run a11y validation on child component elementspull/1105/merge
commit
24ea1afe78
@ -0,0 +1,9 @@
|
|||||||
|
<Widget scope="foo">
|
||||||
|
<input autofocus>
|
||||||
|
</Widget>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
components: { Widget },
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,10 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"message": "A11y: Avoid using autofocus",
|
||||||
|
"loc": {
|
||||||
|
"column": 8,
|
||||||
|
"line": 2
|
||||||
|
},
|
||||||
|
"pos": 29
|
||||||
|
}
|
||||||
|
]
|
Loading…
Reference in new issue