Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
willsawyerrrr committed Jan 19, 2024
1 parent 54c992c commit 413eb20
Showing 4 changed files with 478 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -2,6 +2,8 @@
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"importOrder": ["<THIRD_PARTY_MODULES>", "^[./]"],
"importOrderSeparation": true,
"jsxSingleQuote": false,
"overrides": [
{
@@ -11,6 +13,7 @@
}
}
],
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"printWidth": 100,
"quoteProps": "consistent",
"semi": true,
473 changes: 473 additions & 0 deletions package-lock.json
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"devDependencies": {
"@octokit/webhooks-types": "^7.3.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/aws-lambda": "^8.10.131",
"@types/node": "^20.11.5",
"aws-cdk-lib": "^2.121.1",
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { EmitterWebhookEvent } from "@octokit/webhooks";
import { APIGatewayEvent, APIGatewayProxyResult } from "aws-lambda";
import { App } from "octokit";

import { safeOctokitRequest } from "./utils";

const app = new App({

0 comments on commit 413eb20

Please sign in to comment.