We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
prelint
.git
1 parent 64677e0 commit 7c6dbbdCopy full SHA for 7c6dbbd
package.json
@@ -46,7 +46,8 @@
46
"scripts": {
47
"prepublishOnly": "safe-publish-latest",
48
"prepublish": "!(type not-in-publish) || not-in-publish || npm run prepublishOnly",
49
- "prelint": "eclint check $(git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js')",
+ "prelint:files": "git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js'",
50
+ "prelint": "FILES=\"$(npm run --silent prelint:files)\" eclint check \"${FILES:=package.json}\"",
51
"lint": "eslint --ext .js,.cjs,.mjs . bin/*",
52
"pretest": "npm run lint",
53
"test": "npm run tests-only",
0 commit comments