Skip to content

Commit 36c0843

Browse files
authoredSep 18, 2024
build(prettier): add missing files to Prettier (#106)
### 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
1 parent 76306f0 commit 36c0843

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎.devcontainer/devcontainer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Node.js & TypeScript",
3-
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4-
"postCreateCommand": "npm install"
2+
"name": "Node.js & TypeScript",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4+
"postCreateCommand": "npm install"
55
}

‎.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
This pull request template provides suggested sections for framing your work.
3-
You're welcome to change or remove headers if it doesn't fit your use case. :)
3+
You're welcome to change or remove headers if it doesn't fit your use case. :)
44
-->
55

66
### What are you trying to accomplish?

‎lib/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function verifyAndParseRequest(body, signature, keyID, options) {
2626
body,
2727
signature,
2828
keyID,
29-
options
29+
options,
3030
);
3131

3232
return {

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"test:code:update-snapshots": "ava --update-snapshots",
3131
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
3232
"test:types": "tsd",
33-
"lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\" \"test/*.ts\"",
34-
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\" \"test/*.js\"",
33+
"lint": "prettier --check \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"",
34+
"lint:fix": "prettier --write \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"",
3535
"coverage": "c8 report --reporter html",
3636
"postcoverage": "open-cli coverage/index.html"
3737
},

0 commit comments

Comments
 (0)
Failed to load comments.