@cspell/dict-scientific-terms-us 3.0.7 → 3.0.8
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 +21 -9
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Add the following to your VSCode settings:
|
|
|
44
44
|
</details>
|
|
45
45
|
|
|
46
46
|
<details>
|
|
47
|
-
<summary>CSpell Settings
|
|
47
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
48
48
|
|
|
49
49
|
**`cspell.json`**
|
|
50
50
|
|
|
@@ -58,7 +58,7 @@ Add the following to your VSCode settings:
|
|
|
58
58
|
</details>
|
|
59
59
|
|
|
60
60
|
<details>
|
|
61
|
-
<summary>CSpell Settings
|
|
61
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
62
62
|
|
|
63
63
|
**`cspell.config.yaml`**
|
|
64
64
|
|
|
@@ -71,6 +71,8 @@ dictionaries:
|
|
|
71
71
|
|
|
72
72
|
</details>
|
|
73
73
|
|
|
74
|
+
## Local Installation using CDN
|
|
75
|
+
|
|
74
76
|
## CDN Configuration
|
|
75
77
|
|
|
76
78
|
<details>
|
|
@@ -82,9 +84,7 @@ Add the following to your VSCode settings:
|
|
|
82
84
|
|
|
83
85
|
```jsonc
|
|
84
86
|
{
|
|
85
|
-
"cSpell.import": [
|
|
86
|
-
"https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us@latest/cspell-ext.json/cspell-ext.json",
|
|
87
|
-
],
|
|
87
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
88
88
|
"cSpell.dictionaries": ["scientific-terms-us"],
|
|
89
89
|
}
|
|
90
90
|
```
|
|
@@ -92,13 +92,13 @@ Add the following to your VSCode settings:
|
|
|
92
92
|
</details>
|
|
93
93
|
|
|
94
94
|
<details>
|
|
95
|
-
<summary>CSpell Settings
|
|
95
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
96
96
|
|
|
97
97
|
**`cspell.json`**
|
|
98
98
|
|
|
99
99
|
```jsonc
|
|
100
100
|
{
|
|
101
|
-
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us
|
|
101
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
102
102
|
"dictionaries": ["scientific-terms-us"],
|
|
103
103
|
}
|
|
104
104
|
```
|
|
@@ -106,19 +106,31 @@ Add the following to your VSCode settings:
|
|
|
106
106
|
</details>
|
|
107
107
|
|
|
108
108
|
<details>
|
|
109
|
-
<summary>CSpell Settings
|
|
109
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
110
110
|
|
|
111
111
|
**`cspell.config.yaml`**
|
|
112
112
|
|
|
113
113
|
```yaml
|
|
114
114
|
import:
|
|
115
|
-
- https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us
|
|
115
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json
|
|
116
116
|
dictionaries:
|
|
117
117
|
- scientific-terms-us
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
</details>
|
|
121
121
|
|
|
122
|
+
## Dictionary Information
|
|
123
|
+
|
|
124
|
+
| Name | Enabled | Description |
|
|
125
|
+
| --------------------- | ------- | ------------------------------- |
|
|
126
|
+
| `scientific-terms-us` | **Yes** | Scientific Terms US dictionary. |
|
|
127
|
+
|
|
128
|
+
## Language Settings
|
|
129
|
+
|
|
130
|
+
| Name | Locale | File Type |
|
|
131
|
+
| --------------------- | ------ | --------- |
|
|
132
|
+
| `scientific-terms-us` | `*` | `*` |
|
|
133
|
+
|
|
122
134
|
<!--- @@inject-end: ./static/install.md --->
|
|
123
135
|
|
|
124
136
|
<!--- @@inject: ../../static/contributing.md --->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-scientific-terms-us",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"description": "Scientific Terms US dictionary for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"custom_scientific_US.trie.gz",
|
|
42
42
|
"cspell-ext.json"
|
|
43
43
|
],
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "627831379fe16dbfcfbf05fe747f05320b86e615"
|
|
45
45
|
}
|