@cspell/dict-scientific-terms-us 3.0.6 → 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/LICENSE +1 -1
- package/README.md +139 -17
- package/package.json +2 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017-
|
|
3
|
+
Copyright (c) 2017-2025 Street Side Software <support@streetsidesoftware.nl>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -6,41 +6,149 @@ The words for this dictionary came from [John Petrie’s LifeBlag](http://www.jp
|
|
|
6
6
|
|
|
7
7
|
This is a pre-built dictionary for use with cspell.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<!--- @@inject: ../../static/requirements.md --->
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## Requirements
|
|
12
|
+
|
|
13
|
+
| Tool | Version |
|
|
14
|
+
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
15
|
+
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 8` |
|
|
16
|
+
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 4` |
|
|
17
|
+
|
|
18
|
+
<!--- @@inject-end: ../../static/requirements.md --->
|
|
19
|
+
|
|
20
|
+
<!--- @@inject: ./static/install.md --->
|
|
21
|
+
|
|
22
|
+
## Local Installation
|
|
12
23
|
|
|
13
24
|
```sh
|
|
14
|
-
npm install -
|
|
15
|
-
cspell link add @cspell/dict-scientific-terms-us
|
|
25
|
+
npm install -D @cspell/dict-scientific-terms-us
|
|
16
26
|
```
|
|
17
27
|
|
|
18
|
-
##
|
|
28
|
+
## Configuration
|
|
19
29
|
|
|
20
|
-
|
|
21
|
-
|
|
30
|
+
<details>
|
|
31
|
+
<summary>VSCode Settings</summary>
|
|
32
|
+
|
|
33
|
+
Add the following to your VSCode settings:
|
|
34
|
+
|
|
35
|
+
**`.vscode/settings.json`**
|
|
36
|
+
|
|
37
|
+
```jsonc
|
|
38
|
+
{
|
|
39
|
+
"cSpell.import": ["@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
40
|
+
"cSpell.dictionaries": ["scientific-terms-us"],
|
|
41
|
+
}
|
|
22
42
|
```
|
|
23
43
|
|
|
24
|
-
|
|
44
|
+
</details>
|
|
45
|
+
|
|
46
|
+
<details>
|
|
47
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
25
48
|
|
|
26
|
-
|
|
49
|
+
**`cspell.json`**
|
|
27
50
|
|
|
28
|
-
```
|
|
51
|
+
```jsonc
|
|
29
52
|
{
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
// …
|
|
53
|
+
"import": ["@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
54
|
+
"dictionaries": ["scientific-terms-us"],
|
|
33
55
|
}
|
|
34
56
|
```
|
|
35
57
|
|
|
36
|
-
|
|
58
|
+
</details>
|
|
37
59
|
|
|
38
|
-
|
|
60
|
+
<details>
|
|
61
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
39
62
|
|
|
40
|
-
|
|
41
|
-
|
|
63
|
+
**`cspell.config.yaml`**
|
|
64
|
+
|
|
65
|
+
```yaml
|
|
66
|
+
import:
|
|
67
|
+
- '@cspell/dict-scientific-terms-us/cspell-ext.json'
|
|
68
|
+
dictionaries:
|
|
69
|
+
- scientific-terms-us
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
</details>
|
|
73
|
+
|
|
74
|
+
## Local Installation using CDN
|
|
75
|
+
|
|
76
|
+
## CDN Configuration
|
|
77
|
+
|
|
78
|
+
<details>
|
|
79
|
+
<summary>VSCode Settings</summary>
|
|
80
|
+
|
|
81
|
+
Add the following to your VSCode settings:
|
|
82
|
+
|
|
83
|
+
**`.vscode/settings.json`**
|
|
84
|
+
|
|
85
|
+
```jsonc
|
|
86
|
+
{
|
|
87
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
88
|
+
"cSpell.dictionaries": ["scientific-terms-us"],
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
</details>
|
|
93
|
+
|
|
94
|
+
<details>
|
|
95
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
96
|
+
|
|
97
|
+
**`cspell.json`**
|
|
98
|
+
|
|
99
|
+
```jsonc
|
|
100
|
+
{
|
|
101
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json"],
|
|
102
|
+
"dictionaries": ["scientific-terms-us"],
|
|
103
|
+
}
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
</details>
|
|
107
|
+
|
|
108
|
+
<details>
|
|
109
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
110
|
+
|
|
111
|
+
**`cspell.config.yaml`**
|
|
112
|
+
|
|
113
|
+
```yaml
|
|
114
|
+
import:
|
|
115
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-scientific-terms-us/cspell-ext.json
|
|
116
|
+
dictionaries:
|
|
117
|
+
- scientific-terms-us
|
|
42
118
|
```
|
|
43
119
|
|
|
120
|
+
</details>
|
|
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
|
+
|
|
134
|
+
<!--- @@inject-end: ./static/install.md --->
|
|
135
|
+
|
|
136
|
+
<!--- @@inject: ../../static/contributing.md --->
|
|
137
|
+
|
|
138
|
+
## Contributing
|
|
139
|
+
|
|
140
|
+
Please help correct any mistakes in the dictionaries.
|
|
141
|
+
|
|
142
|
+
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
|
|
143
|
+
|
|
144
|
+
Special thanks to all of our amazing contributors!
|
|
145
|
+
|
|
146
|
+
### Dictionary Development
|
|
147
|
+
|
|
148
|
+
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
149
|
+
|
|
150
|
+
<!--- @@inject-end: ../../static/contributing.md --->
|
|
151
|
+
|
|
44
152
|
## License
|
|
45
153
|
|
|
46
154
|
MIT
|
|
@@ -48,3 +156,17 @@ MIT
|
|
|
48
156
|
> Some packages may have other licenses included.
|
|
49
157
|
|
|
50
158
|
<!--- cspell:ignore Petrie’s --->
|
|
159
|
+
|
|
160
|
+
<!--- @@inject: ../../static/footer.md --->
|
|
161
|
+
|
|
162
|
+
<br/>
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
<p align="center">
|
|
167
|
+
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
|
|
168
|
+
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
|
|
169
|
+
</a>
|
|
170
|
+
</p>
|
|
171
|
+
|
|
172
|
+
<!--- @@inject-end: ../../static/footer.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
|
}
|