eslint-plugin-vue-a11y icon indicating copy to clipboard operation
eslint-plugin-vue-a11y copied to clipboard

Static AST checker for accessibility rules on elements in .vue

Results 24 eslint-plugin-vue-a11y issues
Sort by recently updated
recently updated
newest added

https://github.com/vuejs/eslint-plugin-vue/issues/462

I have a track in my video element and the captions work well, but it is not being detected by the linter

``` /home/forge/resources/assets/js/pages/watchlist/index.vue 1:1 error Definition for rule 'vue-a11y/rule-name' was not found vue-a11y/rule-name ``` ``` $ yarn run eslint yarn run v1.12.3 $ eslint -c .eslintrc.js --ignore-path .eslintignore --report-unused-disable-directives ./resources/assets/js/**/*.{js,vue} Aborted...

`anchor-has-content` > Anchors must have content and the content must be accessible by a screen reader That makes sense for this: ```html ``` But if you are doing a purely...