Skip to content

Commit b9959f8

Browse files
committed
[meta] fix prelint so it does not fail outside of a git repo
per nodejs/node#41557 (comment)
1 parent 606c62c commit b9959f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"scripts": {
6666
"prepublishOnly": "safe-publish-latest",
6767
"prepublish": "!(type not-in-publish) || not-in-publish || npm run prepublishOnly",
68-
"prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
68+
"prelint": "eclint check $(git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js')",
6969
"lint": "eslint --ext .js,.cjs,.mjs . bin/*",
7070
"pretest": "npm run lint",
7171
"test": "npm run tests-only",

0 commit comments

Comments
 (0)