-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGES: ORM, DI Container and Database (#1)
* refactor: prisma to drizzle and mariadb to postgres * refactor: completely migrate to drizzle * refactor: completely migrate to drizzle * refactor: code quality set up * refactor: add use case classes and change di container to awilix * ci: use pnpm instead npm
- Loading branch information
1 parent
afd8c70
commit 74e2c25
Showing
72 changed files
with
9,873 additions
and
16,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
module.exports = { | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
"plugin:prettier/recommended", | ||
], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["prettier", "@typescript-eslint"], | ||
rules: { | ||
"prettier/prettier": [ | ||
"error", | ||
{ | ||
singleQuote: true, | ||
}, | ||
], | ||
}, | ||
ignorePatterns: [ | ||
"*.js", | ||
"*.cjs", | ||
"package.json", | ||
"package-lock.json", | ||
"pnpm-lock.yaml", | ||
"pnpm-workspace.yaml", | ||
"dist", | ||
".sst", | ||
"/**/node_modules/*", | ||
"*.d.ts", | ||
], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier', | ||
'plugin:prettier/recommended', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['prettier', '@typescript-eslint'], | ||
rules: { | ||
'prettier/prettier': [ | ||
'error', | ||
{ | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
tabWidth: 2, | ||
insertPragma: false, | ||
endOfLine: 'lf', | ||
emptyLines: true, | ||
useTabs: false, | ||
}, | ||
], | ||
}, | ||
ignorePatterns: [ | ||
'*.js', | ||
'*.cjs', | ||
'package.json', | ||
'package-lock.json', | ||
'pnpm-lock.yaml', | ||
'pnpm-workspace.yaml', | ||
'dist', | ||
'.sst', | ||
'/**/node_modules/*', | ||
'*.d.ts', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.