eslint
This commit is contained in:
parent
d85cd58acd
commit
597c6efc9b
91 changed files with 2224 additions and 1400 deletions
13
package.json
13
package.json
|
|
@ -18,7 +18,11 @@
|
|||
"test:e2e": "bun test test/e2e",
|
||||
"test:libs": "turbo run test --filter='./libs/*'",
|
||||
"test:apps": "turbo run test --filter=./apps/*/*",
|
||||
"lint": "turbo run lint",
|
||||
"lint": "eslint apps libs --ext .ts,.tsx",
|
||||
"lint:fix": "eslint apps libs --ext .ts,.tsx --fix",
|
||||
"lint:check": "eslint apps libs --ext .ts,.tsx --max-warnings 0",
|
||||
"lint:apps": "eslint apps --ext .ts,.tsx",
|
||||
"lint:libs": "eslint libs --ext .ts,.tsx",
|
||||
"format": "./scripts/format.sh",
|
||||
"format:check": "prettier --check 'apps/**/*.{ts,json}' 'libs/**/*.{ts,json}' '*.json'",
|
||||
"format:ts": "prettier --write 'apps/**/*.ts' 'libs/**/*.ts'",
|
||||
|
|
@ -53,6 +57,7 @@
|
|||
"apps/*"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.28.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
|
||||
"@testcontainers/mongodb": "^10.7.2",
|
||||
"@testcontainers/postgresql": "^10.7.2",
|
||||
|
|
@ -60,7 +65,13 @@
|
|||
"@types/node": "^22.15.30",
|
||||
"@types/supertest": "^6.0.2",
|
||||
"@types/yup": "^0.32.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
||||
"@typescript-eslint/parser": "^8.34.0",
|
||||
"bun-types": "^1.2.15",
|
||||
"eslint": "^9.28.0",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^7.2.1",
|
||||
"mongodb-memory-server": "^9.1.6",
|
||||
"pg-mem": "^2.8.1",
|
||||
"prettier": "^3.5.3",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue