@cspell/dict-mn-mn 1.2.0 → 1.2.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/README.md +106 -16
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,43 +4,133 @@ Mongolian dictionary for cspell.
|
|
|
4
4
|
|
|
5
5
|
This is a pre-built dictionary for use with CSpell.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<!--- @@inject: ../../static/requirements.md --->
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Requirements
|
|
10
|
+
|
|
11
|
+
| Tool | Version |
|
|
12
|
+
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
13
|
+
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 8` |
|
|
14
|
+
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 4` |
|
|
15
|
+
|
|
16
|
+
<!--- @@inject-end: ../../static/requirements.md --->
|
|
17
|
+
|
|
18
|
+
<!--- @@inject: ./static/install.md --->
|
|
19
|
+
|
|
20
|
+
## Local Installation
|
|
10
21
|
|
|
11
22
|
```sh
|
|
12
|
-
npm install -
|
|
13
|
-
cspell link add @cspell/dict-mn-mn
|
|
23
|
+
npm install -D @cspell/dict-mn-mn
|
|
14
24
|
```
|
|
15
25
|
|
|
16
|
-
##
|
|
26
|
+
## Configuration
|
|
17
27
|
|
|
18
|
-
|
|
19
|
-
|
|
28
|
+
<details>
|
|
29
|
+
<summary>VSCode Settings</summary>
|
|
30
|
+
|
|
31
|
+
Add the following to your VSCode settings:
|
|
32
|
+
|
|
33
|
+
**`.vscode/settings.json`**
|
|
34
|
+
|
|
35
|
+
```jsonc
|
|
36
|
+
{
|
|
37
|
+
"cSpell.import": ["@cspell/dict-mn-mn/cspell-ext.json"],
|
|
38
|
+
"cSpell.language": "mn, mn-MN",
|
|
39
|
+
}
|
|
20
40
|
```
|
|
21
41
|
|
|
22
|
-
|
|
42
|
+
</details>
|
|
43
|
+
|
|
44
|
+
<details>
|
|
45
|
+
<summary>CSpell Settings `cspell.json`</summary>
|
|
23
46
|
|
|
24
|
-
|
|
47
|
+
**`cspell.json`**
|
|
25
48
|
|
|
49
|
+
```jsonc
|
|
50
|
+
{
|
|
51
|
+
"import": ["@cspell/dict-mn-mn/cspell-ext.json"],
|
|
52
|
+
"language": "mn, mn-MN",
|
|
53
|
+
}
|
|
26
54
|
```
|
|
27
|
-
|
|
55
|
+
|
|
56
|
+
</details>
|
|
57
|
+
|
|
58
|
+
<details>
|
|
59
|
+
<summary>CSpell Settings `cspell.config.yaml`</summary>
|
|
60
|
+
|
|
61
|
+
**`cspell.config.yaml`**
|
|
62
|
+
|
|
63
|
+
```yaml
|
|
64
|
+
import:
|
|
65
|
+
- '@cspell/dict-mn-mn/cspell-ext.json'
|
|
66
|
+
language: mn, mn-MN
|
|
28
67
|
```
|
|
29
68
|
|
|
30
|
-
|
|
69
|
+
</details>
|
|
70
|
+
|
|
71
|
+
## CDN Configuration
|
|
72
|
+
|
|
73
|
+
<details>
|
|
74
|
+
<summary>VSCode Settings</summary>
|
|
75
|
+
|
|
76
|
+
Add the following to your VSCode settings:
|
|
77
|
+
|
|
78
|
+
**`.vscode/settings.json`**
|
|
31
79
|
|
|
32
|
-
```
|
|
80
|
+
```jsonc
|
|
33
81
|
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
// …
|
|
82
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-mn-mn@latest/cspell-ext.json/cspell-ext.json"],
|
|
83
|
+
"cSpell.language": "mn, mn-MN",
|
|
37
84
|
}
|
|
38
85
|
```
|
|
39
86
|
|
|
40
|
-
|
|
87
|
+
</details>
|
|
88
|
+
|
|
89
|
+
<details>
|
|
90
|
+
<summary>CSpell Settings `cspell.json`</summary>
|
|
91
|
+
|
|
92
|
+
**`cspell.json`**
|
|
93
|
+
|
|
94
|
+
```jsonc
|
|
95
|
+
{
|
|
96
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-mn-mn@latest/cspell-ext.json/cspell-ext.json"],
|
|
97
|
+
"language": "mn, mn-MN",
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
</details>
|
|
102
|
+
|
|
103
|
+
<details>
|
|
104
|
+
<summary>CSpell Settings `cspell.config.yaml`</summary>
|
|
105
|
+
|
|
106
|
+
**`cspell.config.yaml`**
|
|
107
|
+
|
|
108
|
+
```yaml
|
|
109
|
+
import:
|
|
110
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-mn-mn@latest/cspell-ext.json/cspell-ext.json
|
|
111
|
+
language: mn, mn-MN
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
</details>
|
|
115
|
+
|
|
116
|
+
<!--- @@inject-end: ./static/install.md --->
|
|
117
|
+
|
|
118
|
+
<!--- @@inject: ../../static/contributing.md --->
|
|
119
|
+
|
|
120
|
+
## Contributing
|
|
121
|
+
|
|
122
|
+
Please help correct any mistakes in the dictionaries.
|
|
123
|
+
|
|
124
|
+
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
|
|
125
|
+
|
|
126
|
+
Special thanks to all of our amazing contributors!
|
|
127
|
+
|
|
128
|
+
### Dictionary Development
|
|
41
129
|
|
|
42
130
|
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
43
131
|
|
|
132
|
+
<!--- @@inject-end: ../../static/contributing.md --->
|
|
133
|
+
|
|
44
134
|
## License
|
|
45
135
|
|
|
46
136
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-mn-mn",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Mongolian dictionary for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"*.js",
|
|
51
51
|
"*.d.ts"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "30c5c53b8e28152fc1d8a6cf0c872b068a64221a"
|
|
54
54
|
}
|