mirror of https://github.com/status-im/codimd.git
Merge pull request #1610 from mic4ael/fix-jsonlint
Don't run jsonlint on .vscode jsonc files
This commit is contained in:
commit
381b3ff78e
|
@ -19,7 +19,7 @@
|
||||||
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
|
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
|
||||||
"doctoc": "doctoc --title='# Table of Contents' README.md",
|
"doctoc": "doctoc --title='# Table of Contents' README.md",
|
||||||
"lint": "standard",
|
"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",
|
"start": "sequelize db:migrate && node app.js",
|
||||||
"mocha": "mocha --require intelli-espower-loader --exit ./test --recursive",
|
"mocha": "mocha --require intelli-espower-loader --exit ./test --recursive",
|
||||||
"mocha:ci": "mocha --no-color -R dot --require intelli-espower-loader --exit ./test --recursive",
|
"mocha:ci": "mocha --no-color -R dot --require intelli-espower-loader --exit ./test --recursive",
|
||||||
|
|
Loading…
Reference in New Issue