From a59eb506e149c024591d7e8e526bd080b91e3daa Mon Sep 17 00:00:00 2001 From: David Mehren Date: Fri, 21 Aug 2020 21:45:53 +0200 Subject: [PATCH] Do not automatically fix linting problems Signed-off-by: David Mehren --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 113b00c18..41bb7c760 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", - "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", + "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"", + "lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage",