From af7aa1de5df5097d8e26391920f582e7b75ffdc9 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sun, 28 May 2023 18:01:06 -0400 Subject: [PATCH] chore: don't fix with lint target --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 00077059..a8ed4bf3 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,8 @@ }, "license": "BSD-3-Clause", "scripts": { - "lint": "eslint --fix *.js lib/ test/", + "fix": "npm run lint -- --fix", + "lint": "eslint . --ignore-path .prettierignore", "test": "node test/run-tests.js", "coverage": "c8 --reporter=text --reporter=html npm test", "prettier": "prettier --write .",