cspell-cli 6.30.1 → 6.31.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 +5 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,15 +4,19 @@
4
4
 
5
5
  This repository enables using [cspell](https://github.com/streetsidesoftware/cspell) as a [pre-commit](https://pre-commit.com) hook.
6
6
 
7
+ <!-- x-release-please-start-version -->
8
+
7
9
  ```yaml
8
10
  # .pre-commit-config.yaml
9
11
  repos:
10
12
  - repo: https://github.com/streetsidesoftware/cspell-cli
11
- rev: v6.2.0
13
+ rev: v6.31.1
12
14
  hooks:
13
15
  - id: cspell
14
16
  ```
15
17
 
18
+ <!-- x-release-please-end -->
19
+
16
20
  ## Setup Custom Dictionary
17
21
 
18
22
  To use a custom dictionary with the `pre-commit` hook, create either a `cspell.config.yaml` or `cspell.json` file in your project's root directory.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-cli",
3
- "version": "6.30.1",
3
+ "version": "6.31.1",
4
4
  "description": "CLI for cspell; A Spelling Checker for Code!",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -37,10 +37,10 @@
37
37
  "node": ">=14"
38
38
  },
39
39
  "dependencies": {
40
- "cspell": "^6.30.2"
40
+ "cspell": "^6.31.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "inject-markdown": "^1.5.0",
44
- "prettier": "^2.8.4"
44
+ "prettier": "^3.0.0"
45
45
  }
46
46
  }