Skip to content

Commit

Permalink
Turn vue/no-useless-template-attributes eslint rule back on (#5830)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored Oct 7, 2024
1 parent c226ef2 commit 55b3553
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export default [
'no-undef': 'warn',
'object-shorthand': 'off',
'vue/no-template-key': 'warn',
'vue/no-useless-template-attributes': 'off',
'vue/multi-word-component-names': 'off',
'vuejs-accessibility/no-onchange': 'off',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<!-- eslint-disable vue/no-template-key -->
<template
v-for="(label, index) in labels"
class="checkboxContainer"
>
<input
:id="values[index] + id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<!-- eslint-disable vue/no-template-key -->
<template
v-for="(label, index) in labels"
class="radioButtonContainer"
>
<input
:id="values[index] + id"
Expand Down

0 comments on commit 55b3553

Please sign in to comment.