From a5b5ba35af14e04312d8a5ff9eb1661afdba3d5f Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Wed, 5 Jul 2023 18:22:47 +0200 Subject: [PATCH] [tooling] use cspell `--no-must-find-files` on git hooks, simplify output (#3313) --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4d7f9f88b4d..cbb218dfbcf 100644 --- a/package.json +++ b/package.json @@ -16,11 +16,11 @@ "eslint --fix", "prettier --write", "jest --passWithNoTests", - "yarn cspell --gitignore" + "yarn lint-cspell" ], "*.{md,html,json,css}": [ "prettier --write", - "yarn cspell --gitignore" + "yarn lint-cspell" ] }, "husky": { @@ -59,7 +59,7 @@ "jest": "jest --testPathIgnorePatterns cm6-graphql", "license-check": "jsgl --local ./", "lint": "yarn eslint && yarn pretty-check && yarn lint-cspell", - "lint-cspell": "cspell --unique", + "lint-cspell": "cspell --unique --no-progress --no-must-find-files", "lint-fix": "yarn eslint --fix", "postbuild": "yarn workspace codemirror-graphql run postbuild", "prebuild-bundles": "yarn build-bundles-clean",