chore(docs): contributing (#1311)

* chore(server): linting

* chore: contributing pr checklist
This commit is contained in:
Jason Rasmussen
2023-01-12 09:44:11 -05:00
committed by GitHub
parent 131caa20eb
commit 67c52c3764
8 changed files with 97 additions and 36 deletions

View File

@@ -11,7 +11,8 @@
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build immich && nest build microservices && nest build cli",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"start": "nest start",
"nest": "nest",
"start:dev": "nest start --watch",
@@ -19,8 +20,9 @@
"start:prod": "node dist/main",
"lint": "eslint \"{apps,libs}/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"check:types": "tsc --noEmit",
"check:all": "npm run lint && npm run check:types && npm run test",
"check": "tsc --noEmit",
"check:code": "npm run format && npm run lint && npm run check",
"check:all": "npm run check:code && npm run test",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",