vue-a11y/eslint-plugin-vuejs-accessibility

Linked templates does not return errors

Closed this issue · 4 comments

I just realized that linked template are not triggering errors with the plugin ! Am I right or did I miss something in my configuration ? Those linked template should also return accessibility errors.

In my case this kind of configuration does not return any error :(

// Vue file
<script>....</script>
<template src="./template.html" >

// template.html file
<span>👩</span>

I don't think it actually can in this case. The function of the plugin is to lint vue files, but it in this case you're trying to lint an HTML file. I'd say you probably want another plugin for the template.html file.

There is no way to consider them to be part of the Vue file ? Since they are linked from it.
And templates are not standard html files since they have Vue attributes or tags.
I'm surprised you are not considering it.

I did have a look at it and it seems not possible :
vuejs/eslint-plugin-vue#490
vuejs/vue-eslint-parser#28