Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(prettier): add missing files to Prettier #106

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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