Skip to content

Commit 381b3ff

Browse files
authored
Merge pull request #1610 from mic4ael/fix-jsonlint
Don't run jsonlint on .vscode jsonc files
2 parents cebd5e7 + 6bf5e7e commit 381b3ff

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
@@ -19,7 +19,7 @@
1919
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
2020
"doctoc": "doctoc --title='# Table of Contents' README.md",
2121
"lint": "standard",
22-
"jsonlint": "find . -type f -not -ipath \"./node_modules/*\" \\( -name \"*.json\" -o -name \"*.json.*\" \\) | xargs -n 1 -I{} -- bash -c 'echo {}; jq . {} > /dev/null;'",
22+
"jsonlint": "find . -type f -not -ipath \"./node_modules/*\" -not -ipath \"./.vscode/*\" \\( -name \"*.json\" -o -name \"*.json.*\" \\) | xargs -n 1 -I{} -- bash -c 'echo {}; jq . {} > /dev/null;'",
2323
"start": "sequelize db:migrate && node app.js",
2424
"mocha": "mocha --require intelli-espower-loader --exit ./test --recursive",
2525
"mocha:ci": "mocha --no-color -R dot --require intelli-espower-loader --exit ./test --recursive",

0 commit comments

Comments
 (0)