Skip to content

Commit ce31d4e

Browse files
wagenetclaude
andcommitted
Fix lint: use single-quoted strings in test valid cases
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
1 parent 4fbd7e5 commit ce31d4e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/lib/rules/template-no-deprecated.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ const ruleTester = new RuleTester({
1717
ruleTester.run('template-no-deprecated', rule, {
1818
valid: [
1919
// Non-deprecated component reference
20-
`import SomeComponent from './some-component';\n<template><SomeComponent /></template>`,
20+
'import SomeComponent from \'./some-component\';\n<template><SomeComponent /></template>',
2121
// Plain HTML tag -- never reported
22-
`<template><div></div></template>`,
22+
'<template><div></div></template>',
2323
// this.something -- not a scope reference
24-
`<template>{{this.foo}}</template>`,
24+
'<template>{{this.foo}}</template>',
2525
// Undefined reference -- no def, skip
26-
`<template>{{undefinedThing}}</template>`,
26+
'<template>{{undefinedThing}}</template>',
2727
],
2828
invalid: [],
2929
});

0 commit comments

Comments
 (0)