Skip to content

Commit 450158e

Browse files
renovate[bot]Ezard
andauthored
chore(deps): update dependency prettier to v3 (Ezard#346)
* chore(deps): update dependency prettier to v3 * Update formatting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ben Ezard <[email protected]>
1 parent 05a3678 commit 450158e

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

functions/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"firebase-tools": "12.5.2",
5555
"jest": "29.6.4",
5656
"nock": "13.3.3",
57-
"prettier": "2.8.8",
57+
"prettier": "3.0.3",
5858
"smee-client": "1.2.3",
5959
"ts-jest": "29.1.1",
6060
"typescript": "5.2.2"

functions/src/handle-pull-request-change.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ export async function handlePullRequestChange(context: Context<ContextEvent>): P
6161
}
6262

6363
class InfoSemanticState extends SemanticState {
64-
constructor(isSemantic: boolean, private message: string) {
64+
constructor(
65+
isSemantic: boolean,
66+
private message: string,
67+
) {
6568
super(isSemantic);
6669
}
6770

@@ -71,7 +74,11 @@ export async function handlePullRequestChange(context: Context<ContextEvent>): P
7174
}
7275

7376
class SuccessFailureSemanticState extends SemanticState {
74-
constructor(isSemantic: boolean, private successMessage: string, private failureMessage: string) {
77+
constructor(
78+
isSemantic: boolean,
79+
private successMessage: string,
80+
private failureMessage: string,
81+
) {
7582
super(isSemantic);
7683
}
7784

0 commit comments

Comments
 (0)