cspell-cli 9.3.1 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +5 -2
  2. package/index.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -18,7 +18,7 @@ This repository enables using [cspell](https://github.com/streetsidesoftware/csp
18
18
  # .pre-commit-config.yaml
19
19
  repos:
20
20
  - repo: https://github.com/streetsidesoftware/cspell-cli
21
- rev: v9.3.1
21
+ rev: v9.4.0
22
22
  hooks:
23
23
  - id: cspell # Spell check changed files
24
24
  - id: cspell # Spell check the commit message
@@ -159,7 +159,8 @@ Options:
159
159
  the files being checked. Useful for limiting
160
160
  config inheritance.
161
161
  -v, --verbose Display more information about the files being
162
- checked and the configuration.
162
+ checked. Add more than one -v for increased
163
+ verbosity.
163
164
  --locale <locale> Set language locales. i.e. "en,fr" for English
164
165
  and French, or "en-GB" for British English.
165
166
  --language-id <file-type> Force programming language for unknown
@@ -209,6 +210,8 @@ Options:
209
210
  --gitignore-root <path> Prevent searching for .gitignore files past
210
211
  root.
211
212
  --validate-directives Validate in-document CSpell directives.
213
+ --max-file-size <size> Prevent checking large files. i.e 1MB, 50KB,
214
+ 1GB
212
215
  --color Force color.
213
216
  --no-color Turn off color.
214
217
  --no-default-configuration Do not load the default configuration and
package/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import "cspell/bin";
3
+ import 'cspell/bin';
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "9.3.1",
7
+ "version": "9.4.0",
8
8
  "description": "CLI for cspell; A Spelling Checker for Code!",
9
9
  "type": "module",
10
10
  "module": "index.js",
@@ -47,10 +47,10 @@
47
47
  "node": ">=20"
48
48
  },
49
49
  "dependencies": {
50
- "cspell": "^9.3.1"
50
+ "cspell": "^9.4.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "inject-markdown": "^4.0.0",
54
- "prettier": "^3.6.2"
54
+ "prettier": "^3.7.4"
55
55
  }
56
56
  }