From 6bf5e7ee72ed4968aeb46ad5dfa9a541f6b727ff Mon Sep 17 00:00:00 2001 From: Michal Kolodziejski Date: Fri, 2 Oct 2020 15:46:23 +0200 Subject: [PATCH] Don't run jsonlint on .vscode jsonc files Signed-off-by: Michal Kolodziejski --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4aeef4ae9..74134c142 100644 --- a/package.json +++ b/package.json @@ -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",