Skip to content

Commit 7a2577a

Browse files
committed
Run format
1 parent 8a8276d commit 7a2577a

16 files changed

Lines changed: 1454 additions & 1091 deletions

File tree

demo-app/components/host-wrapper.gts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,21 @@ export default class HostWrapper extends Component<{
2323
(element: Element, [set]: [(shadowRoot: HTMLDivElement) => void]) => {
2424
let shadowRoot = element;
2525
if (shadowRootBuild) {
26-
shadowRoot = element.attachShadow({ mode: 'open' }) as unknown as Element;
26+
shadowRoot = element.attachShadow({
27+
mode: 'open',
28+
}) as unknown as Element;
2729
}
2830
const div = document.createElement('div');
2931
shadowRoot.appendChild(div);
3032
set(div);
3133
},
3234
);
3335
<template>
34-
<div data-host-wrapper {{this.attachShadow this.setShadow}} ...attributes></div>
36+
<div
37+
data-host-wrapper
38+
{{this.attachShadow this.setShadow}}
39+
...attributes
40+
></div>
3541

3642
{{#if this.shadow}}
3743
{{#in-element this.shadow}}

docs/app/components/snippets/no-trigger-1.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { on } from '@ember/modifier';
44
<template>
55
<BasicDropdown as |dd|>
66
<div class="form-inline">
7-
{{!-- template-lint-disable require-input-label --}}
7+
{{! template-lint-disable require-input-label }}
88
<input
99
type="text"
1010
class="form-control"

docs/app/components/snippets/trigger-events-0.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import BasicDropdown from 'ember-basic-dropdown/components/basic-dropdown';
22

33
<template>
4-
{{!-- template-lint-disable no-inline-styles --}}
4+
{{! template-lint-disable no-inline-styles }}
55
<div style="display: flex;">
66
<div style="flex: 1;">
77
<BasicDropdown as |dd|>

docs/app/components/snippets/trigger-events-1.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class extends Component {
1313
}
1414

1515
<template>
16-
{{!-- template-lint-disable require-input-label --}}
16+
{{! template-lint-disable require-input-label }}
1717
<input
1818
type="text"
1919
placeholder="Focus me and hit TAB to focus the trigger"

docs/app/components/snippets/trigger-events-2.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default class extends Component {
99
}
1010

1111
<template>
12-
{{!-- template-lint-disable require-input-label --}}
12+
{{! template-lint-disable require-input-label }}
1313
<input
1414
type="text"
1515
placeholder="Focus me and hit TAB to focus the trigger"

docs/app/components/snippets/trigger-events-4.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default class extends Component {
2020
<template>
2121
<p>Focus alternatively the input and the button next to it</p>
2222
<div class="trigger-event-demo input-group {{this.parentDivClass}}">
23-
{{!-- template-lint-disable require-input-label --}}
23+
{{! template-lint-disable require-input-label }}
2424
<input
2525
type="text"
2626
class="form-control"

docs/app/templates/public-pages/docs.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default class extends Component {
109109
{{/each}}
110110
</nav>
111111
<section class="doc-page">
112-
{{!-- template-lint-disable require-input-label --}}
112+
{{! template-lint-disable require-input-label }}
113113
<select class="section-selector" {{on "change" this.visit}}>
114114
{{#each this.groupedSections key="id" as |group|}}
115115
<optgroup label={{group.groupName}}>

docs/app/templates/public-pages/docs/content-events.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import ContentEvents1Component from '../../../components/snippets/content-events
3939

4040
<p>
4141
First we
42-
{{!-- template-lint-disable no-unbalanced-curlies --}}
42+
{{! template-lint-disable no-unbalanced-curlies }}
4343
<code>&lt;dd.Trigger \{{on "mousedown" this.prevent}}&gt;</code>
4444
neglect mouse input: Open/close both by click and hover will trip our users.
4545
</p>

docs/app/templates/public-pages/index.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { LinkTo } from '@ember/routing';
3131

3232
<article class="selling-point">
3333
<div class="selling-point-code">
34-
{{!-- template-lint-disable no-unbalanced-curlies --}}
34+
{{! template-lint-disable no-unbalanced-curlies }}
3535
\{{#ember as |ember|}}
3636
</div>
3737
<div class="selling-point-text">

docs/config/ember-cli-update.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@
1010
"outputRepo": "https://github.com/ember-cli/ember-new-output",
1111
"codemodsSource": "ember-app-codemods-manifest@1",
1212
"isBaseBlueprint": true,
13-
"options": [
14-
"--no-welcome",
15-
"--pnpm",
16-
"--typescript"
17-
]
13+
"options": ["--no-welcome", "--pnpm", "--typescript"]
1814
}
1915
]
2016
}

0 commit comments

Comments
 (0)