@schoero/configs 1.1.12 → 1.1.14
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/cspell.json +35 -5
- package/cspell/dict/names.txt +8 -1
- package/package.json +1 -1
package/cspell/cspell.json
CHANGED
|
@@ -45,16 +45,21 @@
|
|
|
45
45
|
"**/{*,.*}/**/*"
|
|
46
46
|
],
|
|
47
47
|
"ignorePaths": [
|
|
48
|
+
"**/.git/**",
|
|
48
49
|
"**/node_modules/**",
|
|
49
50
|
"**/vscode-extension/**",
|
|
50
|
-
"
|
|
51
|
-
"**/.vscode/**",
|
|
51
|
+
"**/dist/**",
|
|
52
52
|
"**/lib/**",
|
|
53
|
+
"**/build/**",
|
|
54
|
+
"**/public/**",
|
|
55
|
+
"**/.vercel/**",
|
|
53
56
|
"**/__snapshots__/**",
|
|
54
57
|
"**/*.snap",
|
|
55
|
-
"package-lock.json",
|
|
56
|
-
"yarn.lock",
|
|
57
|
-
"pnpm-lock.yaml"
|
|
58
|
+
"**/package-lock.json",
|
|
59
|
+
"**/yarn.lock",
|
|
60
|
+
"**/pnpm-lock.yaml",
|
|
61
|
+
"**/bun.lockb",
|
|
62
|
+
"**/*.css"
|
|
58
63
|
],
|
|
59
64
|
"ignoreRegExpList": [
|
|
60
65
|
"SpellCheckerDisable",
|
|
@@ -273,6 +278,11 @@
|
|
|
273
278
|
"name": "HTML-IDREF-for",
|
|
274
279
|
"pattern": "/\\bfor=\"[^\"]*\"/gi"
|
|
275
280
|
},
|
|
281
|
+
{
|
|
282
|
+
"name": "HTML-symbol-entity",
|
|
283
|
+
"description": "Matches on HTML symbols like `♣`",
|
|
284
|
+
"pattern": "/&[a-z]+;/gi"
|
|
285
|
+
},
|
|
276
286
|
{
|
|
277
287
|
"name": "java-statement-import",
|
|
278
288
|
"description": "Matches the import statement",
|
|
@@ -283,6 +293,26 @@
|
|
|
283
293
|
"description": "Ignore member functions etc, these are checked by the compiler.",
|
|
284
294
|
"pattern": "/(\\.\\w+)+(?=\\()/g"
|
|
285
295
|
},
|
|
296
|
+
{
|
|
297
|
+
"name": "MARKDOWN-link-reference",
|
|
298
|
+
"description": "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
|
|
299
|
+
"pattern": "/(?<=\\])\\[[-\\w.`'\"*&;#@ ]+\\]/g"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "MARKDOWN-link-footer",
|
|
303
|
+
"description": "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
|
|
304
|
+
"pattern": "/\\[[-\\w.`'\"*&;#@ ]+\\]:( [^\\s]*)?/g"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "MARKDOWN-link",
|
|
308
|
+
"description": "Markdown link: `[link text](link)`, matches `link`",
|
|
309
|
+
"pattern": "/(?<=\\]\\()[^)\\s]+/g"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "MARKDOWN-anchor",
|
|
313
|
+
"description": "Markdown Anchors: `<a id=\"my_link\"></a>`, matches `my_link`",
|
|
314
|
+
"pattern": "/(?<=<a\\s+id=\")[^\"\\s]+/g"
|
|
315
|
+
},
|
|
286
316
|
{
|
|
287
317
|
"name": "sql-hex-number",
|
|
288
318
|
"pattern": "/0x[a-f0-9]*/gi"
|
package/cspell/dict/names.txt
CHANGED
|
@@ -19,6 +19,7 @@ github
|
|
|
19
19
|
tailwindcss
|
|
20
20
|
shiki
|
|
21
21
|
stackblitz
|
|
22
|
+
cloudflare
|
|
22
23
|
changelogen
|
|
23
24
|
minimatch
|
|
24
25
|
jsdoc
|
|
@@ -30,4 +31,10 @@ browserify
|
|
|
30
31
|
uuid
|
|
31
32
|
valibot
|
|
32
33
|
vali
|
|
33
|
-
esbuild
|
|
34
|
+
esbuild
|
|
35
|
+
fontaine
|
|
36
|
+
tahoma
|
|
37
|
+
postcss
|
|
38
|
+
undici
|
|
39
|
+
lucide
|
|
40
|
+
Akshar
|
package/package.json
CHANGED