@kitschpatrol/cspell-config 2.2.1 → 3.0.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.
- package/bin/cli.js +28 -26
- package/main.json +2 -1
- package/package.json +3 -3
- package/readme.md +3 -1
package/main.json
CHANGED
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
"enabled": true,
|
|
4
4
|
"enableFiletypes": ["astro", "svelte", "md", "mdx", "patch"],
|
|
5
5
|
"globRoot": "/",
|
|
6
|
-
"ignorePaths": ["pnpm-lock.yaml", "package.json"],
|
|
6
|
+
"ignorePaths": ["pnpm-lock.yaml", "package.json", "*.svg", "*.mp4", "patches/"],
|
|
7
7
|
"ignoreRegExpList": ["tp-.+", "tweakpane-plugin-.+"],
|
|
8
8
|
"language": "en,en-US",
|
|
9
9
|
"useGitignore": true,
|
|
10
10
|
"version": "0.2",
|
|
11
11
|
"words": [
|
|
12
12
|
"0b5vr",
|
|
13
|
+
"antfu",
|
|
13
14
|
"linebreak",
|
|
14
15
|
"remarkrc",
|
|
15
16
|
"unignore",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/cspell-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CSPell config for @kitschpatrol/shared-config",
|
|
6
6
|
"repository": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"main": "./main.json",
|
|
29
29
|
"files": [
|
|
30
|
-
"bin",
|
|
31
|
-
"init"
|
|
30
|
+
"bin/*",
|
|
31
|
+
"init/*"
|
|
32
32
|
],
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"cspell": "^8.1.3"
|
package/readme.md
CHANGED
|
@@ -13,7 +13,7 @@ To use just this CSpell config in isolation:
|
|
|
13
13
|
1. Install the `.npmrc` in your project root. This is required for correct PNPM behavior:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
pnpm dlx @kitschpatrol/
|
|
16
|
+
pnpm dlx @kitschpatrol/repo-config
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
2. Add the package:
|
|
@@ -47,3 +47,5 @@ Integrate with your `package.json` scripts as you see fit, for example:
|
|
|
47
47
|
## Notes
|
|
48
48
|
|
|
49
49
|
This config includes a bunch of words I've happened to have needed to use. Your preferences will vary.
|
|
50
|
+
|
|
51
|
+
CSpell is configured to automatically ignore files and paths in `.gitignore` (via `"useGitignore": true`).
|