Skip to content

Commit e0e07d0

Browse files
committed
lint: eslint --fix (singlequote)
1 parent ccbc523 commit e0e07d0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/audit/no-aria-hidden-on-focusable/peer-parity.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,19 +114,19 @@ ruleTester.run('audit:no-aria-hidden-on-focusable (gts)', rule, {
114114

115115
// vue-a11y: `<button type aria-hidden>` — inherently focusable.
116116
{
117-
code: `<template><button type="button" aria-hidden="true">Submit</button></template>`,
117+
code: '<template><button type="button" aria-hidden="true">Submit</button></template>',
118118
output: null,
119119
errors: [{ messageId: 'noAriaHiddenOnFocusable' }],
120120
},
121121
// vue-a11y: `<a href aria-hidden>` — focusable.
122122
{
123-
code: `<template><a href="#" aria-hidden="true">Link</a></template>`,
123+
code: '<template><a href="#" aria-hidden="true">Link</a></template>',
124124
output: null,
125125
errors: [{ messageId: 'noAriaHiddenOnFocusable' }],
126126
},
127127
// vue-a11y: `<span tabindex="0" aria-hidden>` — tabindex makes focusable.
128128
{
129-
code: `<template><span tabindex="0" aria-hidden="true"><em>Icon</em></span></template>`,
129+
code: '<template><span tabindex="0" aria-hidden="true"><em>Icon</em></span></template>',
130130
output: null,
131131
errors: [{ messageId: 'noAriaHiddenOnFocusable' }],
132132
},

0 commit comments

Comments
 (0)