From 8ddd2f85819e32e9647c3d11013e65196fba193c Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Fri, 6 Sep 2019 16:34:10 +0200 Subject: [PATCH] chore: Remove --fix in lint script Otherwise Travis would accept PRs that ignore our linting rules --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3293a14..e68f0c8 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test": "mocha --recursive -R spec --reporter dot", "test-watch": "npm test -- --watch", "posttest": "npm run lint", - "lint": "eslint lib test --fix", + "lint": "eslint lib test", "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive", "release": "standard-version" },