Skip to content

Commit 2a4f0f7

Browse files
committed
Lessen reporting of pre-commit
1 parent dfced49 commit 2a4f0f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/check-spelling.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ cat > "$TEMP_CONFIG" <<EOF
3838
"words": $USER_WORDS
3939
}
4040
EOF
41-
echo "Created temporary cspell config at $TEMP_CONFIG"
41+
# echo "Created temporary cspell config at $TEMP_CONFIG"
4242

4343
# Run cspell on the target folder
4444
npx --yes cspell --config "$TEMP_CONFIG" "$TARGET_FOLDER/**/*"
4545
SPELL_STATUS=$?
4646

4747
# Clean up
4848
rm "$TEMP_CONFIG"
49-
echo "Temporary config deleted."
49+
# echo "Temporary config deleted."
5050

5151
# Report and exit with the spell check status
5252
if [ $SPELL_STATUS -ne 0 ]; then

scripts/markdown-lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010
TARGET_DIR="$1"
1111
FIX_FLAG="$2"
1212

13-
echo "Linting Markdown files in directory: $TARGET_DIR"
13+
# echo "Linting Markdown files in directory: $TARGET_DIR"
1414

1515
npx --yes markdownlint-cli --config ./.markdownlint.json $TARGET_DIR $FIX_FLAG
1616

0 commit comments

Comments
 (0)