diff --git a/.github/workflows/run-test-and-deploy.yml b/.github/workflows/run-test-and-deploy.yml index 48e710a..3875556 100644 --- a/.github/workflows/run-test-and-deploy.yml +++ b/.github/workflows/run-test-and-deploy.yml @@ -8,7 +8,6 @@ on: - '*' jobs: - test: runs-on: ubuntu-latest strategy: @@ -75,7 +74,7 @@ jobs: deploy: name: Deploy to WP.org runs-on: ubuntu-latest - needs: [ test ] + needs: [test] steps: - name: Checkout diff --git a/.prettierrc.js b/.prettierrc.js index 45e7f99..70df293 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -7,7 +7,6 @@ const config = { printWidth: 100, bracketSpacing: true, parenSpacing: true, - parser: 'typescript', bracketSameLine: false, }; diff --git a/src/block.json b/src/block.json index d25b6e4..46e75b5 100644 --- a/src/block.json +++ b/src/block.json @@ -5,7 +5,7 @@ "title": "Piano", "description": "Play the melody.", "category": "media", - "keywords": [ "audio", "music", "piano"], + "keywords": [ "audio", "music", "piano" ], "icon": "", "attributes": { "volume": { @@ -34,7 +34,7 @@ } }, "supports": { - "align": [ "wide", "full" ], + "align": [ "wide", "full" ], "color": { "enableContrastChecker": false, "text": false, diff --git a/tsconfig.json b/tsconfig.json index e7b08ec..d6e03e7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,11 +10,6 @@ "resolveJsonModule": true, "skipLibCheck": true }, - "include": [ - "src/**/*", - "src/**/*.json" - ], - "exclude": [ - "**/build/**", - ] + "include": [ "src/**/*", "src/**/*.json" ], + "exclude": [ "**/build/**" ] }