Skip to content

Commit 2d07bb7

Browse files
committed
Format all files
1 parent 935dc3b commit 2d07bb7

34 files changed

Lines changed: 289 additions & 296 deletions

.codeclimate.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
version: "2" # required to adjust maintainability checks
1+
version: "2" # required to adjust maintainability checks
22
languages:
3-
JavaScript: true
3+
JavaScript: true
44

55
checks:
66
file-lines:
77
enabled: false
88

9-
109
exclude_paths:
11-
- "**/tests"
12-
- "**/tmp"
13-
- "**/node_modules/"
10+
- "**/tests"
11+
- "**/tmp"
12+
- "**/node_modules/"

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ it will make it easier for us to track down the issue you're having.
77
---
88

99
Output from `ember version --verbose && npm --version && yarn --version && pnpm --version`:
10+
1011
```
1112
[Replace this line with the output.]
1213
```

.github/actions/setup-environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Setup environment
33

44
inputs:
55
node-version:
6-
default: '20'
6+
default: "20"
77
description: Node version
88

99
runs:

.github/dependabot.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: monthly
7-
time: "03:00"
8-
open-pull-requests-limit: 10
9-
versioning-strategy: increase
10-
- package-ecosystem: github-actions
11-
directory: "/"
12-
schedule:
13-
interval: monthly
14-
time: "03:00"
15-
open-pull-requests-limit: 10
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: monthly
7+
time: "03:00"
8+
open-pull-requests-limit: 10
9+
versioning-strategy: increase
10+
- package-ecosystem: github-actions
11+
directory: "/"
12+
schedule:
13+
interval: monthly
14+
time: "03:00"
15+
open-pull-requests-limit: 10

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ on:
77
- beta
88
- release
99
- next
10-
- 'v*'
11-
- 'lts-*'
10+
- "v*"
11+
- "lts-*"
1212
pull_request:
1313
workflow_dispatch:
1414
merge_group:
1515
schedule:
16-
- cron: '0 3 * * *' # daily, at 3am
16+
- cron: "0 3 * * *" # daily, at 3am
1717

1818
concurrency:
1919
group: ci-${{ github.head_ref || github.ref }}
2020
cancel-in-progress: true
2121

2222
env:
23-
SKIP_YARN_COREPACK_CHECK: '0'
23+
SKIP_YARN_COREPACK_CHECK: "0"
2424

2525
jobs:
2626
linting:
@@ -120,7 +120,7 @@ jobs:
120120
- uses: ./.github/actions/setup-environment
121121
- run: pnpm test:all
122122
env:
123-
'EMBER_CLI_${{ matrix.feature-flag }}': true
123+
"EMBER_CLI_${{ matrix.feature-flag }}": true
124124

125125
deprecations-broken-test:
126126
name: Deprecations "broken"
@@ -131,5 +131,5 @@ jobs:
131131
- uses: ./.github/actions/setup-environment
132132
- name: Run Tests with Deprecations as Errors
133133
env:
134-
OVERRIDE_DEPRECATION_VERSION: '22.0.0'
134+
OVERRIDE_DEPRECATION_VERSION: "22.0.0"
135135
run: pnpm test:all

.github/workflows/docs.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: 'Docs'
1+
name: "Docs"
22

33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77
workflow_dispatch:
88
inputs:
99
version:
@@ -12,8 +12,8 @@ on:
1212
description: 'Specify the released version of ember-cli to use to generate and deploy documentation. Should be full tag name, including the leading "v"'
1313

1414
env:
15-
GIT_NAME: 'github-actions[bot]'
16-
GIT_EMAIL: 'github-actions+bot@users.noreply.github.com'
15+
GIT_NAME: "github-actions[bot]"
16+
GIT_EMAIL: "github-actions+bot@users.noreply.github.com"
1717

1818
jobs:
1919
build:
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v6
3939
with:
40-
repository: 'ember-learn/ember-cli.github.io'
40+
repository: "ember-learn/ember-cli.github.io"
4141
ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }}
4242
branch: master
4343
- name: Download docs artifact
@@ -47,20 +47,20 @@ jobs:
4747
path: api
4848
- name: Commit
4949
run: |
50-
git config --local user.email "${{ env.GIT_EMAIL }}"
51-
git config --local user.name "${{ env.GIT_NAME }}"
52-
git add api
53-
COMMIT_MESSAGE="Update docs for ${{ github.event.inputs.version || github.ref }}
50+
git config --local user.email "${{ env.GIT_EMAIL }}"
51+
git config --local user.name "${{ env.GIT_NAME }}"
52+
git add api
53+
COMMIT_MESSAGE="Update docs for ${{ github.event.inputs.version || github.ref }}
5454
55-
---
55+
---
5656
57-
This commit was automatically generated by the ember-cli documentation update process.
57+
This commit was automatically generated by the ember-cli documentation update process.
5858
59-
Commit: $GITHUB_REPOSITORY@$GITHUB_SHA
60-
Script: https://github.com/$GITHUB_REPOSITORY/blob/$GITHUB_SHA/.github/workflows/docs.yml
61-
Logs: https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA/checks"
59+
Commit: $GITHUB_REPOSITORY@$GITHUB_SHA
60+
Script: https://github.com/$GITHUB_REPOSITORY/blob/$GITHUB_SHA/.github/workflows/docs.yml
61+
Logs: https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA/checks"
6262
63-
git commit --allow-empty -m "$COMMIT_MESSAGE"
63+
git commit --allow-empty -m "$COMMIT_MESSAGE"
6464
- name: Push
6565
run: |
6666
git push -f origin HEAD:refs/heads/master

.github/workflows/plan-alpha-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 2
30-
ref: 'master'
30+
ref: "master"
3131
# This will only cause the `is-this-a-release` job to have a "command" of `release`
3232
# when the .release-plan.json file was changed on the last commit.
3333
- id: check-release
@@ -52,7 +52,7 @@ jobs:
5252
# github-changelog can discover what's changed since the last release
5353
with:
5454
fetch-depth: 0
55-
ref: 'master'
55+
ref: "master"
5656
- uses: pnpm/action-setup@v4
5757
- uses: actions/setup-node@v4
5858
with:

.github/workflows/plan-beta-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 2
29-
ref: 'beta'
29+
ref: "beta"
3030
# This will only cause the `is-this-a-release` job to have a "command" of `release`
3131
# when the .release-plan.json file was changed on the last commit.
3232
- id: check-release
@@ -51,7 +51,7 @@ jobs:
5151
# github-changelog can discover what's changed since the last release
5252
with:
5353
fetch-depth: 0
54-
ref: 'beta'
54+
ref: "beta"
5555
- uses: pnpm/action-setup@v4
5656
- uses: actions/setup-node@v4
5757
with:

.github/workflows/plan-stable-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 2
29-
ref: 'release'
29+
ref: "release"
3030
# This will only cause the `is-this-a-release` job to have a "command" of `release`
3131
# when the .release-plan.json file was changed on the last commit.
3232
- id: check-release
@@ -51,7 +51,7 @@ jobs:
5151
# github-changelog can discover what's changed since the last release
5252
with:
5353
fetch-depth: 0
54-
ref: 'release'
54+
ref: "release"
5555
- uses: pnpm/action-setup@v4
5656
- uses: actions/setup-node@v4
5757
with:

.github/workflows/publish-alpha.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- main
1111
- master
1212
paths:
13-
- '.release-plan.json'
13+
- ".release-plan.json"
1414

1515
concurrency:
1616
group: publish-${{ github.head_ref || github.ref }}
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
node-version: 20
3535
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
36-
registry-url: 'https://registry.npmjs.org'
36+
registry-url: "https://registry.npmjs.org"
3737
cache: pnpm
3838
- run: pnpm install --frozen-lockfile
3939
- name: Publish to NPM

0 commit comments

Comments
 (0)