Skip to content

Commit

Permalink
fix(package.json): remove linting from start script
Browse files Browse the repository at this point in the history
remove linting from start script as it was redundant
  • Loading branch information
saisilinus committed May 19, 2022
1 parent 5909f41 commit ffa8c7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"node": ">=14.0.0"
},
"scripts": {
"start": "tsc --build && eslint . --fix && pm2 start ecosystem.config.json --no-daemon",
"compile": "tsc --build && eslint . --fix",
"start": "tsc --build && pm2 start ecosystem.config.json --no-daemon",
"compile": "tsc --build",
"compile:watch": "tsc --build --watch",
"pre:dev": "cross-env NODE_ENV=development nodemon --experimental-modules --es-module-specifier-resolution=node dist/index.js",
"dev": "concurrently --kill-others \"yarn compile:watch\" \"yarn pre:dev\"",
Expand All @@ -31,7 +31,7 @@
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up",
"prepare": "husky install",
"release": "standard-version",
"commit": "cz"
"commit": "git add -A && cz"
},
"keywords": [
"node",
Expand Down

0 comments on commit ffa8c7e

Please sign in to comment.