From 8e8937851b5a62def6428630f741b2120ec32a62 Mon Sep 17 00:00:00 2001 From: microshine Date: Thu, 7 Mar 2019 03:15:30 +0300 Subject: [PATCH] Add `lint:fix` script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index fc130c7..b2d87ff 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "coverage": "nyc npm test", "coveralls": "nyc report --reporter=text-lcov | coveralls", "lint": "tslint '{src,test}/**/*.ts'", + "lint:fix": "tslint --fix '{src,test}/**/*.ts'", "prepub": "npm run lint && npm run test && npm run build", "pub": "npm version patch && npm publish --access=public && git push" },