cspell-cli
Version:
CLI for cspell; A Spelling Checker for Code!
17 lines (15 loc) • 396 B
YAML
# For use with pre-commit.
# See usage instructions at http://pre-commit.com
- id: cspell
name: cspell
description: This hook runs CSpell spellchecker
entry: cspell-cli
language: node
types: [text]
args:
- --no-must-find-files
- --no-progress
- --no-summary
- --gitignore
- --files # this needs to be the last argument so that the paths are passed correctly.