mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 22:34:41 +00:00
Don't run jsonlint on .vscode jsonc files
Signed-off-by: Michal Kolodziejski <michal.kolodziejski@cern.ch>
This commit is contained in:
parent
cebd5e7da9
commit
6bf5e7ee72
@ -19,7 +19,7 @@
|
||||
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
|
||||
"doctoc": "doctoc --title='# Table of Contents' README.md",
|
||||
"lint": "standard",
|
||||
"jsonlint": "find . -type f -not -ipath \"./node_modules/*\" \\( -name \"*.json\" -o -name \"*.json.*\" \\) | xargs -n 1 -I{} -- bash -c 'echo {}; jq . {} > /dev/null;'",
|
||||
"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;'",
|
||||
"start": "sequelize db:migrate && node app.js",
|
||||
"mocha": "mocha --require intelli-espower-loader --exit ./test --recursive",
|
||||
"mocha:ci": "mocha --no-color -R dot --require intelli-espower-loader --exit ./test --recursive",
|
||||
|
Loading…
x
Reference in New Issue
Block a user