cspell-cli 8.7.0 → 8.8.1

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 (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +2 -2
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: v8.7.0
21
+ rev: v8.8.1
22
22
  hooks:
23
23
  - id: cspell
24
24
  ```
@@ -142,7 +142,7 @@ Options:
142
142
  checked and the configuration.
143
143
  --locale <locale> Set language locales. i.e. "en,fr" for English
144
144
  and French, or "en-GB" for British English.
145
- --language-id <language> Force programming language for unknown
145
+ --language-id <file-type> Force programming language for unknown
146
146
  extensions. i.e. "php" or "scala"
147
147
  --words-only Only output the words not found in the
148
148
  dictionaries.
@@ -185,7 +185,6 @@ Options:
185
185
  --gitignore-root <path> Prevent searching for .gitignore files past
186
186
  root.
187
187
  --validate-directives Validate in-document CSpell directives.
188
- --no-validate-directives Do not validate in-document CSpell directives.
189
188
  --no-color Turn off color.
190
189
  --color Force color.
191
190
  --no-default-configuration Do not load the default configuration and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-cli",
3
- "version": "8.7.0",
3
+ "version": "8.8.1",
4
4
  "description": "CLI for cspell; A Spelling Checker for Code!",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -43,7 +43,7 @@
43
43
  "node": ">=18"
44
44
  },
45
45
  "dependencies": {
46
- "cspell": "^8.7.0"
46
+ "cspell": "^8.8.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "inject-markdown": "^3.0.0",