Skip to content

Commit 7ca1edc

Browse files
committed
lint: normalize string quotes to single per quotes rule
1 parent 57f55fc commit 7ca1edc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/lib/rules/template-no-autofocus-attribute.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ ruleTester.run('template-no-autofocus-attribute', rule, {
6767
// we can't know whether the prop forwards to a native <input autofocus>
6868
// or is used for something else. Narrow to {{input}} / {{component
6969
// "input"}} which deterministically render native inputs.
70-
`<template>{{my-wrapper autofocus=true}}</template>`,
71-
`<template>{{some-component autofocus=true name="foo"}}</template>`,
72-
`<template>{{component "some-other-helper" autofocus=true}}</template>`,
70+
'<template>{{my-wrapper autofocus=true}}</template>',
71+
'<template>{{some-component autofocus=true name="foo"}}</template>',
72+
'<template>{{component "some-other-helper" autofocus=true}}</template>',
7373
],
7474

7575
invalid: [

0 commit comments

Comments
 (0)