diff --git a/.prettierrc b/.prettierrc index a20502b..4dffd78 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,7 @@ { + "tabWidth": 2, + "useTabs": false, "singleQuote": true, - "trailingComma": "all" + "trailingComma": "all", + "printWidth": 120 } diff --git a/src/main.ts b/src/main.ts index c01a2f7..132e6a7 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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();