Skip to content

Commit 4a0d0d6

Browse files
style(ci): format turbo convention verifier
1 parent 8e3afb3 commit 4a0d0d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/scripts/verify-turbo-conventions.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ function listPackageJsonPathsFromGit() {
116116
.split('\n')
117117
.map((entry) => entry.trim())
118118
.filter(Boolean)
119-
.filter((entry) => entry === 'package.json' || entry.endsWith('/package.json'))
119+
.filter(
120+
(entry) => entry === 'package.json' || entry.endsWith('/package.json'),
121+
)
120122
.filter((entry) => !isExcludedPackageJsonPath(entry))
121123
.join('\n'),
122124
);

0 commit comments

Comments
 (0)