Skip to content

Commit f8f90dc

Browse files
fixed linting warnings
1 parent f5d36a1 commit f8f90dc

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

packages/cli/src/cli.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ export async function runCli({
192192
let projectSpinner: ProgressSpinner | null = null;
193193

194194
if (!jsonOutput && !bufferAll) {
195-
console.log(formatProjectHeader(project.displayName, project.relativePath));
195+
console.log(
196+
formatProjectHeader(project.displayName, project.relativePath),
197+
);
196198
console.log(ansi.gray('─'.repeat(60)));
197199
if (useProjectSpinner) {
198200
projectSpinner = new ProgressSpinner();
@@ -328,7 +330,9 @@ export async function runCli({
328330
for (const project of projectReports.filter(
329331
(p) => p.projectNeedsAttention,
330332
)) {
331-
console.log(formatProjectHeader(project.displayName, project.relativePath));
333+
console.log(
334+
formatProjectHeader(project.displayName, project.relativePath),
335+
);
332336
console.log(ansi.gray('─'.repeat(60)));
333337
if (verboseProjects) {
334338
for (const section of project.sectionResults) {
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
2-
3-
export default new Map([]);
4-
1+
export default new Map();

0 commit comments

Comments
 (0)