cspell-cli 7.2.0 → 7.3.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 +3 -2
  2. package/package.json +2 -2
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.2.0
13
+ rev: v7.3.0
14
14
  hooks:
15
15
  - id: cspell
16
16
  ```
@@ -117,7 +117,8 @@ Options:
117
117
  --quiet Only show spelling issues or errors.
118
118
  --fail-fast Exit after first file with an issue or error.
119
119
  -r, --root <root folder> Root directory, defaults to current directory.
120
- --relative Issues are displayed relative to root.
120
+ --no-relative Issues are displayed with absolute path instead
121
+ of relative to the root.
121
122
  --show-context Show the surrounding text around an issue.
122
123
  --show-suggestions Show spelling suggestions.
123
124
  --no-show-suggestions Do not show spelling suggestions or fixes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-cli",
3
- "version": "7.2.0",
3
+ "version": "7.3.0",
4
4
  "description": "CLI for cspell; A Spelling Checker for Code!",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -38,7 +38,7 @@
38
38
  "node": ">=16"
39
39
  },
40
40
  "dependencies": {
41
- "cspell": "^7.2.0"
41
+ "cspell": "^7.3.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "inject-markdown": "^2.0.0",