This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit 6e668f7a098481d44425ed24cbec752bdf7efd4d Author: Randall Leeds <[email protected]> AuthorDate: Thu May 14 22:59:55 2020 -0700 Do not fix lint errors with yarn lint Leave it to the user to run linting with automatic fixing to avoid any confusion that might arise from the command generating unstaged changes. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1ed4a05..f081fbe 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "build:esm": "cross-env BABEL_ENV=esm yarn build:babel -d esm src", "build:misc": "lerna exec -- cp ../../LICENSE ../../NOTICE .", "clean": "lerna exec -- rimraf LICENSE NOTICE esm lib", - "lint": "eslint --fix --quiet .", + "lint": "eslint .", "prepare": "lerna run prepare", "prepublishOnly": "yarn run build", "start": "yarn run web:server",
