diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index acdaad6..88d1d01 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Node.js & TypeScript", - "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", - "postCreateCommand": "npm install" + "name": "Node.js & TypeScript", + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", + "postCreateCommand": "npm install" } diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 9d98815..c5d34ab 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,6 @@ ### What are you trying to accomplish? diff --git a/lib/parse.js b/lib/parse.js index e2767f9..ec02d6e 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -26,7 +26,7 @@ export async function verifyAndParseRequest(body, signature, keyID, options) { body, signature, keyID, - options + options, ); return { diff --git a/package.json b/package.json index aa20d16..2d1979b 100644 --- a/package.json +++ b/package.json @@ -30,8 +30,8 @@ "test:code:update-snapshots": "ava --update-snapshots", "test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js", "test:types": "tsd", - "lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\" \"test/*.ts\"", - "lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\" \"test/*.js\"", + "lint": "prettier --check \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"", + "lint:fix": "prettier --write \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"", "coverage": "c8 report --reporter html", "postcoverage": "open-cli coverage/index.html" },