Skip to content

Commit d8137d8

Browse files
committed
Change Prettier settings
1 parent 0fa3b93 commit d8137d8

31 files changed

+5534
-5503
lines changed

.eslintrc.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@typescript-eslint/no-unused-vars": "error",
1818
"@typescript-eslint/explicit-member-accessibility": [
1919
"error",
20-
{"accessibility": "no-public"}
20+
{ "accessibility": "no-public" }
2121
],
2222
"@typescript-eslint/no-require-imports": "error",
2323
"@typescript-eslint/array-type": "error",
@@ -27,7 +27,7 @@
2727
"@typescript-eslint/consistent-type-assertions": "error",
2828
"@typescript-eslint/explicit-function-return-type": [
2929
"error",
30-
{"allowExpressions": true}
30+
{ "allowExpressions": true }
3131
],
3232
"@typescript-eslint/func-call-spacing": ["error", "never"],
3333
"@typescript-eslint/no-array-constructor": "error",
@@ -50,8 +50,6 @@
5050
"@typescript-eslint/promise-function-async": "error",
5151
"@typescript-eslint/require-array-sort-compare": "error",
5252
"@typescript-eslint/restrict-plus-operands": "error",
53-
"semi": "off",
54-
"@typescript-eslint/semi": ["error", "never"],
5553
"@typescript-eslint/type-annotation-spacing": "error",
5654
"@typescript-eslint/unbound-method": "error"
5755
},

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
* text=auto eol=lf
2-
dist/** -diff linguist-generated=true
2+
dist/** -diff linguist-generated=true

.github/release-drafter.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
1-
name-template: 'v$RESOLVED_VERSION 🌈'
2-
tag-template: 'v$RESOLVED_VERSION'
1+
name-template: "v$RESOLVED_VERSION 🌈"
2+
tag-template: "v$RESOLVED_VERSION"
33
categories:
4-
- title: '🚨 Breaking changes'
4+
- title: "🚨 Breaking changes"
55
labels:
6-
- 'breaking-change'
7-
- title: '✨ New features'
6+
- "breaking-change"
7+
- title: "✨ New features"
88
labels:
9-
- 'new-feature'
10-
- title: '🐛 Bug fixes'
9+
- "new-feature"
10+
- title: "🐛 Bug fixes"
1111
labels:
12-
- 'bugfix'
13-
- title: '🚀 Enhancements'
12+
- "bugfix"
13+
- title: "🚀 Enhancements"
1414
labels:
15-
- 'enhancement'
16-
- 'refactor'
17-
- 'performance'
18-
- title: '🧰 Maintenance'
15+
- "enhancement"
16+
- "refactor"
17+
- "performance"
18+
- title: "🧰 Maintenance"
1919
labels:
20-
- 'maintenance'
21-
- 'ci'
22-
- 'default-version-update'
23-
- title: '📚 Documentation'
20+
- "maintenance"
21+
- "ci"
22+
- "default-version-update"
23+
- title: "📚 Documentation"
2424
labels:
25-
- 'documentation'
26-
- title: '⬆️ Dependency updates'
25+
- "documentation"
26+
- title: "⬆️ Dependency updates"
2727
labels:
28-
- 'dependencies'
29-
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
28+
- "dependencies"
29+
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
3030
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
3131
version-resolver:
3232
major:
3333
labels:
34-
- 'major'
35-
- 'breaking-change'
34+
- "major"
35+
- "breaking-change"
3636
minor:
3737
labels:
38-
- 'minor'
39-
- 'new-feature'
40-
- 'enhancement'
38+
- "minor"
39+
- "new-feature"
40+
- "enhancement"
4141
patch:
4242
labels:
43-
- 'patch'
44-
- 'bugfix'
45-
- 'default-version-update'
43+
- "patch"
44+
- "bugfix"
45+
- "default-version-update"
4646
default: patch
4747
template: |
4848
## Changes

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ on:
1010
branches:
1111
- main
1212
paths-ignore:
13-
- '**.md'
13+
- "**.md"
1414
pull_request:
1515
paths-ignore:
16-
- '**.md'
16+
- "**.md"
1717
workflow_dispatch:
1818

1919
jobs:

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: 'CodeQL'
12+
name: "CodeQL"
1313

1414
on:
1515
push:
@@ -18,7 +18,7 @@ on:
1818
# The branches below must be a subset of the branches above
1919
branches: [main]
2020
schedule:
21-
- cron: '31 7 * * 3'
21+
- cron: "31 7 * * 3"
2222

2323
jobs:
2424
analyze:
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
language: ['TypeScript']
35+
language: ["TypeScript"]
3636
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3737
# Learn more about CodeQL language support at https://git.io/codeql-language-support
3838

.github/workflows/test-cache-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'test-cache-windows'
1+
name: "test-cache-windows"
22
on:
33
pull_request:
44
push:

.github/workflows/test-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'test-cache'
1+
name: "test-cache"
22
on:
33
pull_request:
44
push:

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'test-windows'
1+
name: "test-windows"
22
on:
33
pull_request:
44
push:

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'test'
1+
name: "test"
22
on:
33
pull_request:
44
push:
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: '20'
22+
node-version: "20"
2323
- run: |
2424
npm install
2525
- run: |
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
45-
uv-version: ['latest', '0.3.0', '0.3.2']
45+
uv-version: ["latest", "0.3.0", "0.3.2"]
4646
steps:
4747
- uses: actions/checkout@v4
4848
- name: Install version ${{ matrix.uv-version }}
@@ -58,19 +58,19 @@ jobs:
5858
matrix:
5959
os: [ubuntu-latest, oracle-aarch64]
6060
checksum:
61-
['4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd']
61+
["4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd"]
6262
exclude:
6363
- os: oracle-aarch64
64-
checksum: '4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd'
64+
checksum: "4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd"
6565
include:
6666
- os: oracle-aarch64
67-
checksum: 'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8'
67+
checksum: "e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8"
6868
steps:
6969
- uses: actions/checkout@v4
7070
- name: Checksum matches expected
7171
uses: ./
7272
with:
73-
version: '0.3.2'
73+
version: "0.3.2"
7474
checksum: ${{ matrix.checksum }}
7575
github-token: ${{ secrets.GITHUB_TOKEN }}
7676
test-without-github-token:
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Update default version and checksums'
1+
name: "Update default version and checksums"
22
on:
33
workflow_dispatch:
44

@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-node@v4
1111
with:
12-
node-version: '20'
12+
node-version: "20"
1313
- name: Update default version and checksums
1414
id: update-default-version
1515
run:
@@ -20,14 +20,14 @@ jobs:
2020
- name: Create Pull Request
2121
uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0
2222
with:
23-
commit-message: 'chore: update checksums'
23+
commit-message: "chore: update checksums"
2424
title:
25-
'chore: update default version to ${{
26-
steps.update-default-version.outputs.latest-version }}'
25+
"chore: update default version to ${{
26+
steps.update-default-version.outputs.latest-version }}"
2727
body:
28-
'chore: update default version to ${{
29-
steps.update-default-version.outputs.latest-version }}'
28+
"chore: update default version to ${{
29+
steps.update-default-version.outputs.latest-version }}"
3030
base: main
31-
labels: 'automated-pr,default-version-update'
31+
labels: "automated-pr,default-version-update"
3232
branch: update-default-version-pr
3333
delete-branch: true

0 commit comments

Comments
 (0)