cspell-cli 7.3.0 → 7.3.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 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -10,7 +10,7 @@ This repository enables using [cspell](https://github.com/streetsidesoftware/csp
10
10
  # .pre-commit-config.yaml
11
11
  repos:
12
12
  - repo: https://github.com/streetsidesoftware/cspell-cli
13
- rev: v7.3.0
13
+ rev: v7.3.1
14
14
  hooks:
15
15
  - id: cspell
16
16
  ```
@@ -114,6 +114,7 @@ Options:
114
114
  --no-progress Turn off progress messages
115
115
  --no-summary Turn off summary message in console.
116
116
  -s, --silent Silent mode, suppress error messages.
117
+ --no-exit-code Do not return an exit code if issues are found.
117
118
  --quiet Only show spelling issues or errors.
118
119
  --fail-fast Exit after first file with an issue or error.
119
120
  -r, --root <root folder> Root directory, defaults to current directory.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-cli",
3
- "version": "7.3.0",
3
+ "version": "7.3.1",
4
4
  "description": "CLI for cspell; A Spelling Checker for Code!",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -38,10 +38,10 @@
38
38
  "node": ">=16"
39
39
  },
40
40
  "dependencies": {
41
- "cspell": "^7.3.2"
41
+ "cspell": "^7.3.7"
42
42
  },
43
43
  "devDependencies": {
44
44
  "inject-markdown": "^2.0.0",
45
- "prettier": "^3.0.2"
45
+ "prettier": "^3.0.3"
46
46
  }
47
47
  }