Skip to content

Commit 40a8ca9

Browse files
committed
chore(deps): upgrade eslint
1 parent e0f00ea commit 40a8ca9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1683
-611
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bug report
22
description: Create a report to help us improve.
3-
title: "[Function Name] A title for the problem"
4-
labels: ["bug report"]
3+
title: '[Function Name] A title for the problem'
4+
labels: [bug report]
55
body:
66

77
- type: input

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blank_issues_enabled: true
1+
blank_issues_enabled: true

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Feature request
22
description: Suggest an idea for this project.
3-
title: "A title for the feature request"
4-
labels: ["feature request"]
3+
title: A title for the feature request
4+
labels: [feature request]
55
body:
66

77
- type: textarea

.github/workflows/code-check.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
steps:
6868
- name: Checkout
6969
uses: actions/checkout@v4
70-
70+
7171
- name: Setup Pnpm
7272
uses: pnpm/action-setup@v3
7373
with:
@@ -93,7 +93,7 @@ jobs:
9393
steps:
9494
- name: Checkout
9595
uses: actions/checkout@v4
96-
96+
9797
- name: Setup Pnpm
9898
uses: pnpm/action-setup@v3
9999
with:
@@ -122,14 +122,14 @@ jobs:
122122
github-token: ${{ secrets.GITHUB_TOKEN }}
123123
flag-name: Unit Test
124124
parallel: true
125-
125+
126126
build:
127127
needs: setup
128128
runs-on: ubuntu-latest
129129
steps:
130130
- name: Checkout
131131
uses: actions/checkout@v4
132-
132+
133133
- name: Setup Pnpm
134134
uses: pnpm/action-setup@v3
135135
with:
@@ -148,13 +148,13 @@ jobs:
148148

149149
- name: Build
150150
run: pnpm build
151-
151+
152152
finish:
153-
needs: unit-test
154-
runs-on: ubuntu-latest
155-
steps:
156-
- name: Coveralls Finished
157-
uses: coverallsapp/github-action@v2
158-
with:
159-
parallel-finished: true
160-
carryforward: "run-1,run-2"
153+
needs: unit-test
154+
runs-on: ubuntu-latest
155+
steps:
156+
- name: Coveralls Finished
157+
uses: coverallsapp/github-action@v2
158+
with:
159+
parallel-finished: true
160+
carryforward: 'run-1,run-2'

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
steps:
5353
- name: Deploy to GitHub Pages
5454
id: deployment
55-
uses: actions/deploy-pages@v4
55+
uses: actions/deploy-pages@v4

.github/workflows/issue-check-helper.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.event.label.name == 'help wanted'
1313
uses: actions-cool/issues-helper@v2.0.0
1414
with:
15-
actions: 'create-comment'
15+
actions: create-comment
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
issue-number: ${{ github.event.issue.number }}
1818
body: |
@@ -22,8 +22,8 @@ jobs:
2222
if: github.event.label.name == 'need reproduce'
2323
uses: actions-cool/issues-helper@v2.0.0
2424
with:
25-
actions: 'create-comment'
25+
actions: create-comment
2626
token: ${{ secrets.GITHUB_TOKEN }}
2727
issue-number: ${{ github.event.issue.number }}
2828
body: |
29-
👋 @${{ github.event.issue.user.login }}. Thank you for reporting this issue. In order for us to address it effectively, could you please provide a minimal reproducible demo or step? This will help us better understand the problem and work towards a solution. Thank you!
29+
👋 @${{ github.event.issue.user.login }}. Thank you for reporting this issue. In order for us to address it effectively, could you please provide a minimal reproducible demo or step? This will help us better understand the problem and work towards a solution. Thank you!

.github/workflows/issue-inactive.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Issue Check Inactive
22

33
on:
44
schedule:
5-
- cron: "0 0 1 * *"
5+
- cron: '0 0 1 * *'
66

77
jobs:
88
check-inactive:
@@ -11,5 +11,5 @@ jobs:
1111
- name: check-inactive
1212
uses: actions-cool/issues-helper@v2
1313
with:
14-
actions: 'check-inactive'
15-
inactive-day: 90
14+
actions: check-inactive
15+
inactive-day: 90

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ jobs:
5757
uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0
60-
60+
6161
- name: Sync
6262
env:
63-
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63+
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6464
run: |
6565
git checkout main
6666
git pull --rebase origin beta
@@ -82,4 +82,4 @@ jobs:
8282
run: |
8383
git checkout main
8484
git pull --rebase origin alpha
85-
git push -f
85+
git push -f

0 commit comments

Comments
 (0)