cspell-cli 9.4.0 → 9.7.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 (2) hide show
  1. package/README.md +4 -2
  2. 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.4.0
21
+ rev: v9.7.0
22
22
  hooks:
23
23
  - id: cspell # Spell check changed files
24
24
  - id: cspell # Spell check the commit message
@@ -80,7 +80,7 @@ npm install -g git+https://github.com/streetsidesoftware/cspell-cli
80
80
  [Package cspell](https://github.com/streetsidesoftware/cspell-cli/pkgs/container/cspell)
81
81
 
82
82
  ```sh
83
- docker run -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest "**"
83
+ docker run -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest .
84
84
  ```
85
85
 
86
86
  See [Extending the Docker Container to include German](https://github.com/streetsidesoftware/cspell-cli/tree/main/docker/german/README.md)
@@ -279,6 +279,8 @@ Options:
279
279
  words.
280
280
  --dictionary <name> Enable a dictionary by name. Can be used multiple
281
281
  times.
282
+ --no-dictionary <name> Disable a dictionary by name. Can be used multiple
283
+ times.
282
284
  --dictionary-path <format> Configure how to display the dictionary path.
283
285
  (choices: "hide", "short", "long", "full",
284
286
  default: Display most of the path.)
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "9.4.0",
7
+ "version": "9.7.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.4.0"
50
+ "cspell": "^9.7.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "inject-markdown": "^4.0.0",
54
- "prettier": "^3.7.4"
54
+ "prettier": "^3.8.1"
55
55
  }
56
56
  }