From aa219ba9126af835e62c2a72f0ed47dd1c650945 Mon Sep 17 00:00:00 2001 From: Quinn Turner Date: Fri, 1 Dec 2023 18:34:50 -0400 Subject: [PATCH] Format YAML files --- .github/workflows/biome.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 2 +- .vscode/extensions.json | 3 +-- .vscode/settings.json | 13 ++++++++----- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/biome.yml b/.github/workflows/biome.yml index 608ab72..3265b89 100644 --- a/.github/workflows/biome.yml +++ b/.github/workflows/biome.yml @@ -8,4 +8,4 @@ jobs: - uses: oven-sh/setup-bun@v1 - run: bun install - run: bun run check - - run: git diff --exit-code \ No newline at end of file + - run: git diff --exit-code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82295d2..4fbb046 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: - uses: oven-sh/setup-bun@v1 - uses: actions/setup-node@v3 with: - node-version: '20.x' - registry-url: 'https://registry.npmjs.org' + node-version: "20.x" + registry-url: "https://registry.npmjs.org" - run: bun install - run: bun run build - run: npm publish env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5daa9a3..33aeefd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,4 +7,4 @@ jobs: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v1 - run: bun install - - run: bun test --coverage \ No newline at end of file + - run: bun test --coverage diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 94b0a09..16e8e66 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,4 +1,3 @@ { - "recommendations": ["biomejs.biome"], - "unwantedRecommendations": ["esbenp.prettier-vscode"] + "recommendations": ["biomejs.biome"] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 9ca45f5..e3f73f6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,16 @@ { "editor.formatOnSave": true, "editor.formatOnPaste": false, - "editor.defaultFormatter": "biomejs.biome", + "editor.defaultFormatter": "esbenp.prettier-vscode", + "javascript.preferences.importModuleSpecifierEnding": "js", + "typescript.preferences.importModuleSpecifierEnding": "js", "[javascript]": { - "editor.defaultFormatter": "biomejs.biome", - "javascript.preferences.importModuleSpecifierEnding": "js" + "editor.defaultFormatter": "biomejs.biome" + }, + "[json]": { + "editor.defaultFormatter": "biomejs.biome" }, "[typescript]": { - "editor.defaultFormatter": "biomejs.biome", - "typescript.preferences.importModuleSpecifierEnding": "js" + "editor.defaultFormatter": "biomejs.biome" } }