@m-social/cspell-config 0.3.0 → 0.4.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.
- package/README.md +3 -3
- package/cspell.config.js +2 -3
- package/dictionaries/internal.txt +2 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @m-social/cspell-config
|
|
2
2
|
|
|
3
|
-
[](https://npmx.dev/package/@m-social/cspell-config)
|
|
4
|
+
[](https://npmx.dev/package/@m-social/cspell-config)
|
|
5
5
|
|
|
6
6
|
> A shareable CSpell configuration for TypeScript projects used at [M-Social](https://msocialproduction.com)
|
|
7
7
|
|
|
@@ -29,7 +29,7 @@ Create a `cspell.config.yaml` file (or use [another supported format](https://cs
|
|
|
29
29
|
|
|
30
30
|
```yaml
|
|
31
31
|
import:
|
|
32
|
-
-
|
|
32
|
+
- "@m-social/cspell-config"
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
## 📄 License
|
package/cspell.config.js
CHANGED
|
@@ -8,7 +8,6 @@ const config = {
|
|
|
8
8
|
description: "CSpell configuration used at M-Social.",
|
|
9
9
|
import: ["@cspell/cspell-bundled-dicts", "@cspell/dict-ru_ru/cspell-ext.json"],
|
|
10
10
|
useGitignore: true,
|
|
11
|
-
words: ["m-social", "msocial", "msocialproduction"],
|
|
12
11
|
ignorePaths: [
|
|
13
12
|
"**/package.json",
|
|
14
13
|
"**/patches",
|
|
@@ -36,8 +35,8 @@ const config = {
|
|
|
36
35
|
dictionaries: ["m-social:packages", "m-social:internal", "m-social:terms"],
|
|
37
36
|
overrides: [
|
|
38
37
|
{
|
|
39
|
-
filename: "
|
|
40
|
-
|
|
38
|
+
filename: "**/*.svg",
|
|
39
|
+
dictionaries: ["html", "css"],
|
|
41
40
|
},
|
|
42
41
|
],
|
|
43
42
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m-social/cspell-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Shared CSpell config for projects used at M-Social",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"m-social",
|
|
@@ -19,6 +19,11 @@
|
|
|
19
19
|
}
|
|
20
20
|
],
|
|
21
21
|
"license": "MIT",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/m-social/frontend-configs.git",
|
|
25
|
+
"directory": "configs/cspell"
|
|
26
|
+
},
|
|
22
27
|
"type": "module",
|
|
23
28
|
"sideEffects": false,
|
|
24
29
|
"main": "cspell.json",
|
|
@@ -34,19 +39,14 @@
|
|
|
34
39
|
"dictionaries"
|
|
35
40
|
],
|
|
36
41
|
"dependencies": {
|
|
37
|
-
"@cspell/cspell-bundled-dicts": "^9.
|
|
42
|
+
"@cspell/cspell-bundled-dicts": "^9.7.0",
|
|
38
43
|
"@cspell/dict-ru_ru": "^2.3.2"
|
|
39
44
|
},
|
|
40
45
|
"peerDependencies": {
|
|
41
|
-
"cspell": "^9.
|
|
46
|
+
"cspell": "^9.7.0"
|
|
42
47
|
},
|
|
43
48
|
"devDependencies": {
|
|
44
|
-
"@
|
|
45
|
-
"@changesets/cli": "^2.29.8",
|
|
46
|
-
"@cspell/cspell-types": "^9.6.4",
|
|
47
|
-
"@m-social/biome-config": "^0.3.0",
|
|
48
|
-
"@m-social/prettier-config": "^2.0.0",
|
|
49
|
-
"cspell": "^9.6.4",
|
|
49
|
+
"@cspell/cspell-types": "^9.7.0",
|
|
50
50
|
"prettier": "^3.8.1",
|
|
51
51
|
"publint": "^0.3.17",
|
|
52
52
|
"typescript": "^5.9.3"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
|
-
"
|
|
58
|
+
"build": "publint"
|
|
59
59
|
}
|
|
60
60
|
}
|