cspell-cli 6.31.0 → 6.31.2
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.
- package/README.md +5 -1
- package/package.json +4 -4
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
|
|
13
|
+
rev: v6.31.2
|
|
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.31.
|
|
3
|
+
"version": "6.31.2",
|
|
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.31.
|
|
40
|
+
"cspell": "^6.31.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"inject-markdown": "^
|
|
44
|
-
"prettier": "^
|
|
43
|
+
"inject-markdown": "^2.0.0",
|
|
44
|
+
"prettier": "^3.0.1"
|
|
45
45
|
}
|
|
46
46
|
}
|