Have lint script only lint, and lint-fix script lint and fix

This commit is contained in:
2018-11-18 23:22:22 +00:00
parent 1241478006
commit 62b8f73f82

View File

@@ -29,7 +29,8 @@
"prettier": "^1.14.3"
},
"scripts": {
"lint": "eslint . --fix",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "mocha"
}
}