@cspell/dict-cspell-bundle 1.0.0 → 1.0.2
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/cspell-ext.json +56 -0
- package/package.json +57 -55
package/cspell-ext.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"readonly": true,
|
|
7
7
|
"import": [
|
|
8
8
|
"@cspell/dict-ada/cspell-ext.json",
|
|
9
|
+
"@cspell/dict-al/cspell-ext.json",
|
|
9
10
|
"@cspell/dict-aws/cspell-ext.json",
|
|
10
11
|
"@cspell/dict-bash/cspell-ext.json",
|
|
11
12
|
"@cspell/dict-companies/cspell-ext.json",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"@cspell/dict-lorem-ipsum/cspell-ext.json",
|
|
40
41
|
"@cspell/dict-lua/cspell-ext.json",
|
|
41
42
|
"@cspell/dict-makefile/cspell-ext.json",
|
|
43
|
+
"@cspell/dict-markdown/cspell-ext.json",
|
|
42
44
|
"@cspell/dict-monkeyc/cspell-ext.json",
|
|
43
45
|
"@cspell/dict-node/cspell-ext.json",
|
|
44
46
|
"@cspell/dict-npm/cspell-ext.json",
|
|
@@ -57,5 +59,59 @@
|
|
|
57
59
|
"@cspell/dict-terraform/cspell-ext.json",
|
|
58
60
|
"@cspell/dict-typescript/cspell-ext.json",
|
|
59
61
|
"@cspell/dict-vue/cspell-ext.json"
|
|
62
|
+
],
|
|
63
|
+
"languageSettings": [
|
|
64
|
+
{
|
|
65
|
+
"languageId": "javascript,javascriptreact",
|
|
66
|
+
"dictionaries": ["typescript", "node", "npm"]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"languageId": "typescript,typescriptreact,mdx",
|
|
70
|
+
"dictionaries": ["typescript", "node", "npm"]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"languageId": "javascriptreact,typescriptreact,mdx",
|
|
74
|
+
"dictionaries": ["html", "html-symbol-entities", "css", "fonts"]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"languageId": "markdown,asciidoc",
|
|
78
|
+
"dictionaries": ["npm", "html", "html-symbol-entities"]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"languageId": "html,pug,jade,php,handlebars",
|
|
82
|
+
"dictionaries": ["html", "fonts", "typescript", "css", "npm", "html-symbol-entities"]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"languageId": "json,jsonc",
|
|
86
|
+
"dictionaries": ["node", "npm"]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"languageId": "php",
|
|
90
|
+
"dictionaries": ["php"]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"languageId": "css,less,scss",
|
|
94
|
+
"dictionaries": ["fonts", "css"]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"languageId": "map",
|
|
98
|
+
"enabled": false
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"languageId": "image",
|
|
102
|
+
"enabled": false
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"languageId": "binary",
|
|
106
|
+
"enabled": false
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"languageId": "markdown,html,mdx",
|
|
110
|
+
"ignoreRegExpList": ["HTML-symbol-entity"]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"languageId": "html",
|
|
114
|
+
"ignoreRegExpList": ["href"]
|
|
115
|
+
}
|
|
60
116
|
]
|
|
61
117
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-cspell-bundle",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Dictionaries included with the CSpell Command Line tool.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"./cspell-ext.json": "./cspell-ext.json"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "node ./scripts/build.mjs",
|
|
16
|
+
"build": "node ./scripts/build.mjs && prettier cspell-ext.json --write ",
|
|
17
17
|
"test": "cspell --no-default-configuration .",
|
|
18
18
|
"prepublishOnly": "echo OK",
|
|
19
19
|
"prepare:dictionary": "pnpm run build"
|
|
@@ -37,63 +37,65 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/cspell#readme",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cspell/dict-ada": "4.0.5",
|
|
41
|
-
"@cspell/dict-
|
|
42
|
-
"@cspell/dict-
|
|
43
|
-
"@cspell/dict-
|
|
44
|
-
"@cspell/dict-
|
|
45
|
-
"@cspell/dict-
|
|
46
|
-
"@cspell/dict-
|
|
47
|
-
"@cspell/dict-
|
|
48
|
-
"@cspell/dict-
|
|
49
|
-
"@cspell/dict-
|
|
50
|
-
"@cspell/dict-
|
|
51
|
-
"@cspell/dict-
|
|
52
|
-
"@cspell/dict-
|
|
53
|
-
"@cspell/dict-
|
|
54
|
-
"@cspell/dict-
|
|
55
|
-
"@cspell/dict-
|
|
56
|
-
"@cspell/dict-
|
|
57
|
-
"@cspell/dict-
|
|
58
|
-
"@cspell/dict-
|
|
59
|
-
"@cspell/dict-
|
|
60
|
-
"@cspell/dict-
|
|
61
|
-
"@cspell/dict-
|
|
62
|
-
"@cspell/dict-
|
|
63
|
-
"@cspell/dict-
|
|
64
|
-
"@cspell/dict-
|
|
65
|
-
"@cspell/dict-
|
|
66
|
-
"@cspell/dict-html
|
|
67
|
-
"@cspell/dict-
|
|
68
|
-
"@cspell/dict-
|
|
69
|
-
"@cspell/dict-
|
|
70
|
-
"@cspell/dict-
|
|
71
|
-
"@cspell/dict-
|
|
72
|
-
"@cspell/dict-
|
|
73
|
-
"@cspell/dict-
|
|
74
|
-
"@cspell/dict-
|
|
75
|
-
"@cspell/dict-
|
|
76
|
-
"@cspell/dict-
|
|
77
|
-
"@cspell/dict-
|
|
78
|
-
"@cspell/dict-
|
|
79
|
-
"@cspell/dict-
|
|
80
|
-
"@cspell/dict-
|
|
81
|
-
"@cspell/dict-
|
|
82
|
-
"@cspell/dict-
|
|
83
|
-
"@cspell/dict-
|
|
84
|
-
"@cspell/dict-
|
|
85
|
-
"@cspell/dict-
|
|
86
|
-
"@cspell/dict-
|
|
87
|
-
"@cspell/dict-
|
|
88
|
-
"@cspell/dict-
|
|
89
|
-
"@cspell/dict-
|
|
90
|
-
"@cspell/dict-
|
|
91
|
-
"@cspell/dict-
|
|
40
|
+
"@cspell/dict-ada": "^4.0.5",
|
|
41
|
+
"@cspell/dict-al": "^1.0.3",
|
|
42
|
+
"@cspell/dict-aws": "^4.0.7",
|
|
43
|
+
"@cspell/dict-bash": "^4.1.8",
|
|
44
|
+
"@cspell/dict-companies": "^3.1.7",
|
|
45
|
+
"@cspell/dict-cpp": "^5.1.23",
|
|
46
|
+
"@cspell/dict-cryptocurrencies": "^5.0.3",
|
|
47
|
+
"@cspell/dict-csharp": "^4.0.5",
|
|
48
|
+
"@cspell/dict-css": "^4.0.16",
|
|
49
|
+
"@cspell/dict-dart": "^2.2.4",
|
|
50
|
+
"@cspell/dict-django": "^4.1.3",
|
|
51
|
+
"@cspell/dict-docker": "^1.1.11",
|
|
52
|
+
"@cspell/dict-dotnet": "^5.0.8",
|
|
53
|
+
"@cspell/dict-elixir": "^4.0.6",
|
|
54
|
+
"@cspell/dict-en-common-misspellings": "^2.0.7",
|
|
55
|
+
"@cspell/dict-en_us": "^4.3.26",
|
|
56
|
+
"@cspell/dict-filetypes": "^3.0.8",
|
|
57
|
+
"@cspell/dict-flutter": "^1.0.3",
|
|
58
|
+
"@cspell/dict-fonts": "^4.0.3",
|
|
59
|
+
"@cspell/dict-fsharp": "^1.0.4",
|
|
60
|
+
"@cspell/dict-fullstack": "^3.2.3",
|
|
61
|
+
"@cspell/dict-gaming-terms": "^1.0.8",
|
|
62
|
+
"@cspell/dict-git": "^3.0.3",
|
|
63
|
+
"@cspell/dict-golang": "^6.0.16",
|
|
64
|
+
"@cspell/dict-google": "^1.0.4",
|
|
65
|
+
"@cspell/dict-haskell": "^4.0.4",
|
|
66
|
+
"@cspell/dict-html": "^4.0.10",
|
|
67
|
+
"@cspell/dict-html-symbol-entities": "^4.0.3",
|
|
68
|
+
"@cspell/dict-java": "^5.0.10",
|
|
69
|
+
"@cspell/dict-julia": "^1.0.4",
|
|
70
|
+
"@cspell/dict-k8s": "^1.0.9",
|
|
71
|
+
"@cspell/dict-latex": "^4.0.3",
|
|
72
|
+
"@cspell/dict-lorem-ipsum": "^4.0.3",
|
|
73
|
+
"@cspell/dict-lua": "^4.0.6",
|
|
74
|
+
"@cspell/dict-makefile": "^1.0.3",
|
|
75
|
+
"@cspell/dict-markdown": "^2.0.7",
|
|
76
|
+
"@cspell/dict-monkeyc": "^1.0.9",
|
|
77
|
+
"@cspell/dict-node": "^5.0.4",
|
|
78
|
+
"@cspell/dict-npm": "^5.1.8",
|
|
79
|
+
"@cspell/dict-php": "^4.0.13",
|
|
80
|
+
"@cspell/dict-powershell": "^5.0.13",
|
|
81
|
+
"@cspell/dict-public-licenses": "^2.0.11",
|
|
82
|
+
"@cspell/dict-python": "^4.2.12",
|
|
83
|
+
"@cspell/dict-r": "^2.0.4",
|
|
84
|
+
"@cspell/dict-ruby": "^5.0.7",
|
|
85
|
+
"@cspell/dict-rust": "^4.0.9",
|
|
86
|
+
"@cspell/dict-scala": "^5.0.6",
|
|
87
|
+
"@cspell/dict-software-terms": "^4.1.12",
|
|
88
|
+
"@cspell/dict-sql": "^2.1.8",
|
|
89
|
+
"@cspell/dict-svelte": "^1.0.5",
|
|
90
|
+
"@cspell/dict-swift": "^2.0.4",
|
|
91
|
+
"@cspell/dict-terraform": "^1.0.5",
|
|
92
|
+
"@cspell/dict-typescript": "^3.1.11",
|
|
93
|
+
"@cspell/dict-vue": "^3.0.3"
|
|
92
94
|
},
|
|
93
95
|
"files": [
|
|
94
96
|
"cspell-ext.json",
|
|
95
97
|
"*.js",
|
|
96
98
|
"*.d.ts"
|
|
97
99
|
],
|
|
98
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "560fa89cce87d7753a08ab6f481ecb62a02fcc8b"
|
|
99
101
|
}
|