Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
janbuchar committed May 20, 2024
1 parent 575f1f6 commit c7ec820
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"lineWidth": 120,
"indentStyle": "space",
"indentWidth": 4,
"quoteProperties": "preserve"
"quoteProperties": "preserve",
"lineEnding": "lf"
}
}
}
6 changes: 5 additions & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/usr/bin/env node

// eslint-disable-next-line @typescript-eslint/no-var-requires
require('yargonaut').style('blue').style('yellow', 'required').helpStyle('green').errorsStyle('red');
require('yargonaut') //
.style('blue')
.style('yellow', 'required')
.helpStyle('green')
.errorsStyle('red');

// eslint-disable-next-line
import { CreateProjectCommand } from './commands/CreateProjectCommand';
Expand Down

0 comments on commit c7ec820

Please sign in to comment.