Skip to content

Commit

Permalink
fix prettier style linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LivioAlvarenga committed Jul 15, 2024
2 parents f27b698 + a8e3368 commit 2737de4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
6 changes: 3 additions & 3 deletions src/infra/migrations/1720705154932_test-migration.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
* @type {import('node-pg-migrate').ColumnDefinitions | undefined}
*/
exports.shorthands = undefined;
exports.shorthands = undefined

/**
* @param pgm {import('node-pg-migrate').MigrationBuilder}
* @param run {() => void | undefined}
* @returns {Promise<void> | void}
*/
exports.up = (pgm) => {};
exports.up = (pgm) => {}

/**
* @param pgm {import('node-pg-migrate').MigrationBuilder}
* @param run {() => void | undefined}
* @returns {Promise<void> | void}
*/
exports.down = (pgm) => {};
exports.down = (pgm) => {}
14 changes: 3 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -23,9 +19,7 @@
],
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
"@/*": ["./src/*"]
}
},
"include": [
Expand All @@ -36,7 +30,5 @@
"src/tests/**/*.test.ts",
"src/models/**/*.ts"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}

0 comments on commit 2737de4

Please sign in to comment.