cspell-cli 8.5.0 → 8.6.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 +9 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # cspell-cli
2
2
 
3
+ ## Usage
4
+
5
+ To check all files under the current directory, run:
6
+
7
+ ```
8
+ npx cspell-cli --gitignore .
9
+ ```
10
+
3
11
  ## Setup [pre-commit](https://pre-commit.com) Hook
4
12
 
5
13
  This repository enables using [cspell](https://github.com/streetsidesoftware/cspell) as a [pre-commit](https://pre-commit.com) hook.
@@ -10,7 +18,7 @@ This repository enables using [cspell](https://github.com/streetsidesoftware/csp
10
18
  # .pre-commit-config.yaml
11
19
  repos:
12
20
  - repo: https://github.com/streetsidesoftware/cspell-cli
13
- rev: v8.5.0
21
+ rev: v8.6.1
14
22
  hooks:
15
23
  - id: cspell
16
24
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-cli",
3
- "version": "8.5.0",
3
+ "version": "8.6.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.5.0"
46
+ "cspell": "^8.6.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "inject-markdown": "^3.0.0",