@storm-software/cspell 0.2.2 → 0.3.0

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 CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.2.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.2.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/cspell-ext.json CHANGED
@@ -26,20 +26,10 @@
26
26
  "javascriptreact",
27
27
  "mdx",
28
28
  "rust",
29
- "c",
30
- "cpp",
31
- "csharp",
32
29
  "json",
33
30
  "jsonc",
34
31
  "yaml",
35
- "css",
36
- "html",
37
- "handlebars",
38
- "markdown",
39
- "dockerfile",
40
- "terraform",
41
- "tfvars",
42
- "commit-msg"
32
+ "markdown"
43
33
  ],
44
34
  "locale": "*",
45
35
  "includeRegExpList": [],
@@ -0,0 +1,105 @@
1
+ {
2
+ "version": "0.2",
3
+ "description": "Base CSpell configuration used by Storm Software.",
4
+ "language": "en",
5
+ "caseSensitive": false,
6
+ "dictionaries": [
7
+ "storm",
8
+ "en_us",
9
+ "softwareTerms",
10
+ "filetypes",
11
+ "node",
12
+ "npm",
13
+ "fullstack",
14
+ "markdown"
15
+ ],
16
+ "flagWords": [],
17
+ // Ignore files that aren't check in to git as well as files that aren't written
18
+ // by hand. Note that we do want to check, say, JSON files (as package.json
19
+ // contains English text like package descriptions).
20
+ "useGitignore": true,
21
+ // GitHub Security Advisories
22
+ "ignoreRegExpList": [
23
+ "GHSA-[-\\w]+",
24
+ "Markdown links",
25
+ "Markdown code blocks",
26
+ "Inline code blocks",
27
+ "Link contents",
28
+ "Snippet references",
29
+ "Snippet references 2",
30
+ "Multi-line code blocks",
31
+ "HTML Tags"
32
+ ],
33
+ "ignorePaths": [],
34
+ "overrides": [
35
+ {
36
+ //Ignore anything in a changelog file that looks like a GitHub username.
37
+ "filename": "**/CHANGELOG*.md",
38
+ "ignoreRegExpList": ["@[-\\w]+"]
39
+ },
40
+ {
41
+ //Ignore the targets of links in Markdown/MDX files.
42
+ "filename": "'**/*.md*",
43
+ "ignoreRegExpList": ["\\]\\([^)]+\\)"]
44
+ }
45
+ ],
46
+ "patterns": [
47
+ {
48
+ "name": "Markdown links",
49
+ "pattern": "\\((.*)\\)",
50
+ "description": ""
51
+ },
52
+ {
53
+ "name": "Markdown code blocks",
54
+ "pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
55
+ "description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
56
+ },
57
+ {
58
+ "name": "Inline code blocks",
59
+ "pattern": "\\`([^\\`\\r\\n]+?)\\`",
60
+ "description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
61
+ },
62
+ {
63
+ "name": "Link contents",
64
+ "pattern": "\\<a(.*)\\>",
65
+ "description": ""
66
+ },
67
+ {
68
+ "name": "Snippet references",
69
+ "pattern": "-- snippet:(.*)",
70
+ "description": ""
71
+ },
72
+ {
73
+ "name": "Snippet references 2",
74
+ "pattern": "\\<\\[sample:(.*)",
75
+ "description": "another kind of snippet reference"
76
+ },
77
+ {
78
+ "name": "Multi-line code blocks",
79
+ "pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm"
80
+ },
81
+ {
82
+ "name": "HTML Tags",
83
+ "pattern": "<[^>]*>",
84
+ "description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string"
85
+ }
86
+ ],
87
+ "import": [
88
+ "./cspell-ext.json",
89
+ "@cspell/dict-css/cspell-ext.json",
90
+ "@cspell/dict-en_us/cspell-ext.json",
91
+ "@cspell/dict-filetypes/cspell-ext.json",
92
+ "@cspell/dict-fullstack/cspell-ext.json",
93
+ "@cspell/dict-html-symbol-entities/cspell-ext.json",
94
+ "@cspell/dict-html/cspell-ext.json",
95
+ "@cspell/dict-fonts/cspell-ext.json",
96
+ "@cspell/dict-lorem-ipsum/cspell-ext.json",
97
+ "@cspell/dict-markdown/cspell-ext.json",
98
+ "@cspell/dict-node/cspell-ext.json",
99
+ "@cspell/dict-npm/cspell-ext.json",
100
+ "@cspell/dict-rust/cspell-ext.json",
101
+ "@cspell/dict-sql/cspell-ext.json",
102
+ "@cspell/dict-software-terms/cspell-ext.json",
103
+ "@cspell/dict-typescript/cspell-ext.json"
104
+ ]
105
+ }
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@storm-software/cspell","version":"0.2.2","description":"A package containing CSpell keyword dictionaries and shared configurations for Storm Software.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/cspell"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"maintainers":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},{"name":"Pat Sullivan","email":"admin@stormsoftware.com","url":"https://patsullivan.org"}],"contributors":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"}],"funding":{"type":"github","url":"https://github.com/sponsors/storm-software"},"license":"Apache-2.0","private":false,"packageManager":"pnpm@9.15.2","engines":{"node":">=22.4.0","pnpm":">=9.15.2"},"exports":{".":"./cspell-ext.json","./cspell":"./cspell-ext.json","./cspell-ext.json":"./cspell-ext.json","./cspell-base.json":"./cspell-base.json","./cspell-recommended.json":"./cspell-recommended.json","./cspell-all.json":"./cspell-all.json","./base":"./cspell-base.json","./recommended":"./cspell-recommended.json","./all":"./cspell-all.json"},"files":["*.d.ts","*.js","cspell-all.json","cspell-base.json","cspell-ext.json","cspell-recommendedjson","dict/storm.txt"],"keywords":["storm-software","monorepo","storm-ops","sullivanpj","cspell","cspell-ext","dictionary","spelling"],"peerDependencies":{"@cspell/dict-aws":"^4.0.2","@cspell/dict-bash":"^4.1.3","@cspell/dict-companies":"^3.1.2","@cspell/dict-cpp":"^6.0.3","@cspell/dict-cryptocurrencies":"^5.0.0","@cspell/dict-csharp":"^4.0.2","@cspell/dict-css":"^4.0.12","@cspell/dict-docker":"^1.1.7","@cspell/dict-dotnet":"^5.0.2","@cspell/dict-en-common-misspellings":"^2.0.3","@cspell/dict-en-gb":"^4.1.44","@cspell/dict-en_us":"^4.3.23","@cspell/dict-filetypes":"^3.0.4","@cspell/dict-fonts":"^4.0.0","@cspell/dict-fullstack":"^3.1.8","@cspell/dict-git":"^3.0.0","@cspell/dict-golang":"^6.0.9","@cspell/dict-html":"^4.0.5","@cspell/dict-html-symbol-entities":"^4.0.0","@cspell/dict-java":"^5.0.7","@cspell/dict-k8s":"^1.0.5","@cspell/dict-lorem-ipsum":"^4.0.0","@cspell/dict-makefile":"^1.0.0","@cspell/dict-node":"^5.0.1","@cspell/dict-npm":"^5.0.16","@cspell/dict-php":"^4.0.8","@cspell/dict-powershell":"^5.0.4","@cspell/dict-public-licenses":"^2.0.7","@cspell/dict-python":"^4.1.11","@cspell/dict-r":"^2.0.1","@cspell/dict-ruby":"^5.0.2","@cspell/dict-rust":"^4.0.4","@cspell/dict-software-terms":"^4.2.2","@cspell/dict-sql":"^2.1.3","@cspell/dict-svelte":"^1.0.2","@cspell/dict-swift":"^2.0.1","@cspell/dict-typescript":"^3.1.5","@cspell/dict-vue":"^3.0.0"},"peerDependenciesMeta":{"@cspell/dict-aws":{"optional":true},"@cspell/dict-bash":{"optional":true},"@cspell/dict-companies":{"optional":true},"@cspell/dict-cpp":{"optional":true},"@cspell/dict-cryptocurrencies":{"optional":true},"@cspell/dict-csharp":{"optional":true},"@cspell/dict-css":{"optional":true},"@cspell/dict-docker":{"optional":true},"@cspell/dict-dotnet":{"optional":true},"@cspell/dict-en-common-misspellings":{"optional":true},"@cspell/dict-en-gb":{"optional":true},"@cspell/dict-en_us":{"optional":true},"@cspell/dict-filetypes":{"optional":true},"@cspell/dict-fonts":{"optional":true},"@cspell/dict-fullstack":{"optional":true},"@cspell/dict-git":{"optional":true},"@cspell/dict-golang":{"optional":true},"@cspell/dict-html":{"optional":true},"@cspell/dict-html-symbol-entities":{"optional":true},"@cspell/dict-java":{"optional":true},"@cspell/dict-k8s":{"optional":true},"@cspell/dict-lorem-ipsum":{"optional":true},"@cspell/dict-makefile":{"optional":true},"@cspell/dict-node":{"optional":true},"@cspell/dict-npm":{"optional":true},"@cspell/dict-php":{"optional":true},"@cspell/dict-powershell":{"optional":true},"@cspell/dict-public-licenses":{"optional":true},"@cspell/dict-python":{"optional":true},"@cspell/dict-r":{"optional":true},"@cspell/dict-ruby":{"optional":true},"@cspell/dict-rust":{"optional":true},"@cspell/dict-software-terms":{"optional":true},"@cspell/dict-sql":{"optional":true},"@cspell/dict-svelte":{"optional":true},"@cspell/dict-swift":{"optional":true},"@cspell/dict-typescript":{"optional":true},"@cspell/dict-vue":{"optional":true}},"dependencies":{"cspell":"8.8.4"},"devDependencies":{"@cspell/cspell-tools":"^8.17.1","@cspell/dict-aws":"^4.0.2","@cspell/dict-bash":"^4.1.3","@cspell/dict-companies":"^3.1.2","@cspell/dict-cpp":"^6.0.3","@cspell/dict-cryptocurrencies":"^5.0.0","@cspell/dict-csharp":"^4.0.2","@cspell/dict-css":"^4.0.12","@cspell/dict-docker":"^1.1.7","@cspell/dict-dotnet":"^5.0.2","@cspell/dict-en-common-misspellings":"^2.0.3","@cspell/dict-en-gb":"^4.1.44","@cspell/dict-en_us":"^4.3.23","@cspell/dict-filetypes":"^3.0.4","@cspell/dict-fonts":"^4.0.0","@cspell/dict-fullstack":"^3.1.8","@cspell/dict-git":"^3.0.0","@cspell/dict-golang":"^6.0.9","@cspell/dict-html":"^4.0.5","@cspell/dict-html-symbol-entities":"^4.0.0","@cspell/dict-java":"^5.0.7","@cspell/dict-k8s":"^1.0.5","@cspell/dict-lorem-ipsum":"^4.0.0","@cspell/dict-makefile":"^1.0.0","@cspell/dict-node":"^5.0.1","@cspell/dict-npm":"^5.0.16","@cspell/dict-php":"^4.0.8","@cspell/dict-powershell":"^5.0.4","@cspell/dict-public-licenses":"^2.0.7","@cspell/dict-python":"^4.1.11","@cspell/dict-r":"^2.0.1","@cspell/dict-ruby":"^5.0.2","@cspell/dict-rust":"^4.0.4","@cspell/dict-software-terms":"^4.2.2","@cspell/dict-sql":"^2.1.3","@cspell/dict-svelte":"^1.0.2","@cspell/dict-swift":"^2.0.1","@cspell/dict-typescript":"^3.1.5","@cspell/dict-vue":"^3.0.0"},"publishConfig":{"access":"public"}}
1
+ {"name":"@storm-software/cspell","version":"0.3.0","description":"A package containing CSpell keyword dictionaries and shared configurations for Storm Software.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/cspell"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"maintainers":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},{"name":"Pat Sullivan","email":"admin@stormsoftware.com","url":"https://patsullivan.org"}],"contributors":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"}],"funding":{"type":"github","url":"https://github.com/sponsors/storm-software"},"license":"Apache-2.0","private":false,"packageManager":"pnpm@9.15.2","engines":{"node":">=22.4.0","pnpm":">=9.15.2"},"exports":{".":"./cspell-ext.json","./cspell":"./cspell-ext.json","./cspell-ext.json":"./cspell-ext.json","./cspell-minimal.json":"./cspell-minimal.json","./cspell-base.json":"./cspell-base.json","./cspell-recommended.json":"./cspell-recommended.json","./cspell-all.json":"./cspell-all.json","./minimal":"./cspell-minimal.json","./base":"./cspell-base.json","./recommended":"./cspell-recommended.json","./all":"./cspell-all.json"},"files":["*.d.ts","*.js","cspell-all.json","cspell-base.json","cspell-ext.json","cspell-minimal.json","cspell-recommendedjson","dict/storm.txt"],"keywords":["storm-software","monorepo","storm-ops","sullivanpj","cspell","cspell-ext","dictionary","spelling"],"peerDependencies":{"@cspell/dict-aws":"^4.0.2","@cspell/dict-bash":"^4.1.3","@cspell/dict-companies":"^3.1.2","@cspell/dict-cpp":"^6.0.3","@cspell/dict-cryptocurrencies":"^5.0.0","@cspell/dict-csharp":"^4.0.2","@cspell/dict-css":"^4.0.12","@cspell/dict-docker":"^1.1.7","@cspell/dict-dotnet":"^5.0.2","@cspell/dict-en-common-misspellings":"^2.0.3","@cspell/dict-en-gb":"^4.1.44","@cspell/dict-en_us":"^4.3.23","@cspell/dict-filetypes":"^3.0.4","@cspell/dict-fonts":"^4.0.0","@cspell/dict-fullstack":"^3.1.8","@cspell/dict-git":"^3.0.0","@cspell/dict-golang":"^6.0.9","@cspell/dict-html":"^4.0.5","@cspell/dict-html-symbol-entities":"^4.0.0","@cspell/dict-java":"^5.0.7","@cspell/dict-k8s":"^1.0.5","@cspell/dict-lorem-ipsum":"^4.0.0","@cspell/dict-makefile":"^1.0.0","@cspell/dict-node":"^5.0.1","@cspell/dict-npm":"^5.0.16","@cspell/dict-php":"^4.0.8","@cspell/dict-powershell":"^5.0.4","@cspell/dict-public-licenses":"^2.0.7","@cspell/dict-python":"^4.1.11","@cspell/dict-r":"^2.0.1","@cspell/dict-ruby":"^5.0.2","@cspell/dict-rust":"^4.0.4","@cspell/dict-software-terms":"^4.2.2","@cspell/dict-sql":"^2.1.3","@cspell/dict-svelte":"^1.0.2","@cspell/dict-swift":"^2.0.1","@cspell/dict-typescript":"^3.1.5","@cspell/dict-vue":"^3.0.0"},"peerDependenciesMeta":{"@cspell/dict-aws":{"optional":true},"@cspell/dict-bash":{"optional":true},"@cspell/dict-companies":{"optional":true},"@cspell/dict-cpp":{"optional":true},"@cspell/dict-cryptocurrencies":{"optional":true},"@cspell/dict-csharp":{"optional":true},"@cspell/dict-css":{"optional":true},"@cspell/dict-docker":{"optional":true},"@cspell/dict-dotnet":{"optional":true},"@cspell/dict-en-common-misspellings":{"optional":true},"@cspell/dict-en-gb":{"optional":true},"@cspell/dict-en_us":{"optional":true},"@cspell/dict-filetypes":{"optional":true},"@cspell/dict-fonts":{"optional":true},"@cspell/dict-fullstack":{"optional":true},"@cspell/dict-git":{"optional":true},"@cspell/dict-golang":{"optional":true},"@cspell/dict-html":{"optional":true},"@cspell/dict-html-symbol-entities":{"optional":true},"@cspell/dict-java":{"optional":true},"@cspell/dict-k8s":{"optional":true},"@cspell/dict-lorem-ipsum":{"optional":true},"@cspell/dict-makefile":{"optional":true},"@cspell/dict-node":{"optional":true},"@cspell/dict-npm":{"optional":true},"@cspell/dict-php":{"optional":true},"@cspell/dict-powershell":{"optional":true},"@cspell/dict-public-licenses":{"optional":true},"@cspell/dict-python":{"optional":true},"@cspell/dict-r":{"optional":true},"@cspell/dict-ruby":{"optional":true},"@cspell/dict-rust":{"optional":true},"@cspell/dict-software-terms":{"optional":true},"@cspell/dict-sql":{"optional":true},"@cspell/dict-svelte":{"optional":true},"@cspell/dict-swift":{"optional":true},"@cspell/dict-typescript":{"optional":true},"@cspell/dict-vue":{"optional":true}},"dependencies":{"cspell":"8.8.4"},"devDependencies":{"@cspell/cspell-tools":"^8.17.1","@cspell/dict-aws":"^4.0.2","@cspell/dict-bash":"^4.1.3","@cspell/dict-companies":"^3.1.2","@cspell/dict-cpp":"^6.0.3","@cspell/dict-cryptocurrencies":"^5.0.0","@cspell/dict-csharp":"^4.0.2","@cspell/dict-css":"^4.0.12","@cspell/dict-docker":"^1.1.7","@cspell/dict-dotnet":"^5.0.2","@cspell/dict-en-common-misspellings":"^2.0.3","@cspell/dict-en-gb":"^4.1.44","@cspell/dict-en_us":"^4.3.23","@cspell/dict-filetypes":"^3.0.4","@cspell/dict-fonts":"^4.0.0","@cspell/dict-fullstack":"^3.1.8","@cspell/dict-git":"^3.0.0","@cspell/dict-golang":"^6.0.9","@cspell/dict-html":"^4.0.5","@cspell/dict-html-symbol-entities":"^4.0.0","@cspell/dict-java":"^5.0.7","@cspell/dict-k8s":"^1.0.5","@cspell/dict-lorem-ipsum":"^4.0.0","@cspell/dict-makefile":"^1.0.0","@cspell/dict-node":"^5.0.1","@cspell/dict-npm":"^5.0.16","@cspell/dict-php":"^4.0.8","@cspell/dict-powershell":"^5.0.4","@cspell/dict-public-licenses":"^2.0.7","@cspell/dict-python":"^4.1.11","@cspell/dict-r":"^2.0.1","@cspell/dict-ruby":"^5.0.2","@cspell/dict-rust":"^4.0.4","@cspell/dict-software-terms":"^4.2.2","@cspell/dict-sql":"^2.1.3","@cspell/dict-svelte":"^1.0.2","@cspell/dict-swift":"^2.0.1","@cspell/dict-typescript":"^3.1.5","@cspell/dict-vue":"^3.0.0"},"publishConfig":{"access":"public"}}