Skip to content

Commit

Permalink
Update prettierrc printWidth value
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejkang committed Aug 11, 2021
1 parent d372b51 commit b4f9fb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "all"
"trailingComma": "all",
"printWidth": 120
}
4 changes: 1 addition & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ async function bootstrap() {
async function setupDocument(app: INestApplication) {
const config = new DocumentBuilder()
.setTitle('Driver License Verification API')
.setDescription(
'An unofficial driver license verification crawler API service with live status check support.',
)
.setDescription('An unofficial driver license verification crawler API service with live status check support.')
.setVersion('Alpha')
.build();

Expand Down

0 comments on commit b4f9fb5

Please sign in to comment.