Skip to content

Commit

Permalink
build(prettier): add missing files to Prettier (#106)
Browse files Browse the repository at this point in the history
### Description
- **build(prettier): run Prettier for missing files of the project**
- **style(prettier): run Prettier format**

<!--
This pull request template provides suggested sections for framing your
work.
You're welcome to change or remove headers if it doesn't fit your use
case. :)
-->

### Context
Relates to #89
  • Loading branch information
oscard0m authored Sep 18, 2024
1 parent 76306f0 commit 36c0843
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
This pull request template provides suggested sections for framing your work.
You're welcome to change or remove headers if it doesn't fit your use case. :)
You're welcome to change or remove headers if it doesn't fit your use case. :)
-->

### What are you trying to accomplish?
Expand Down
2 changes: 1 addition & 1 deletion lib/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function verifyAndParseRequest(body, signature, keyID, options) {
body,
signature,
keyID,
options
options,
);

return {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 36c0843

Please sign in to comment.