Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update README / Extensions List #1005

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ See Also:
- [Ukrainian](extensions/ukrainian#readme) - Ukrainian dictionary extension for VS Code.
- [Vietnamese](extensions/vietnamese#readme) - Vietnamese dictionary extension for VS Code.

### Support

- [CSpell Bundled Dictionaries](extensions/cspell-bundled-dictionaries#readme) - CSpell Bundled Dictionaries dictionary extension for VS Code.

### Syntax Highlighters

- [hunspell](extensions/hunspell-syntax#readme) - Hunspell Syntax Highlighting support
Expand Down Expand Up @@ -118,6 +122,10 @@ See Also:
- [Ukrainian](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker-ukrainian) - Ukrainian dictionary extension for VS Code.
- [Vietnamese](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker-vietnamese) - Vietnamese dictionary extension for VS Code.

### Support

- [CSpell Bundled Dictionaries](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker-cspell-bundled-dictionaries) - CSpell Bundled Dictionaries dictionary extension for VS Code.

### Syntax Highlighters

- [hunspell](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.hunspell) - Hunspell Syntax Highlighting support
Expand Down
3 changes: 3 additions & 0 deletions dict-extensions.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
{
"path": "extensions/croatian"
},
{
"path": "extensions/cspell-bundled-dictionaries"
},
{
"path": "extensions/czech"
},
Expand Down
12 changes: 12 additions & 0 deletions extensions/cspell-bundled-dictionaries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,15 @@ This extension helps keep the dictionaries up to date by importing the latest CS
This extension will automatically include [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) extension.

<!--- @@inject: ../../static/footer.md --->

<br/>

---

<p align="center">
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
</a>
</p>

<!--- @@inject-end: ../../static/footer.md --->
4 changes: 2 additions & 2 deletions extensions/cspell-bundled-dictionaries/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "code-spell-checker-cspell-bundled-dictionaries",
"description": "Cspell Bundled Dictionaries dictionary extension for VS Code.",
"description": "CSpell Bundled Dictionaries dictionary extension for VS Code.",
"version": "0.1.0",
"displayName": "Cspell Bundled Dictionaries - Code Spell Checker",
"displayName": "CSpell Bundled Dictionaries - Code Spell Checker",
"icon": "images/SpellCheck.png",
"preview": true,
"private": true,
Expand Down
199 changes: 1 addition & 198 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@
"component": "code-spell-checker-croatian",
"releaseType": "node"
},
"extensions/cspell-bundled-dictionaries": {
"component": "code-spell-checker-cspell-bundled-dictionaries",
"releaseType": "node"
},
"extensions/czech": {
"component": "code-spell-checker-czech",
"releaseType": "node"
Expand Down
8 changes: 4 additions & 4 deletions scripts/gen-extension-list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async function getExtensionInfo(extensionPath) {
async function generateExtensionFolderListMarkdown(extensionInfos) {
const extensionsByCategory = groupExtensionsByType(extensionInfos);

/** @type {import('mdast').Content[]} */
/** @type {import('mdast').RootContent[]} */
const mdastContent = [];

for (const [category, extensions] of extensionsByCategory) {
Expand All @@ -140,7 +140,7 @@ async function generateExtensionFolderListMarkdown(extensionInfos) {
async function generateMarketplaceExtensionsListMarkdown(extensionInfos) {
const extensionsByCategory = groupExtensionsByType(extensionInfos);

/** @type {import('mdast').Content[]} */
/** @type {import('mdast').RootContent[]} */
const mdastContent = [];

for (const [category, extensions] of extensionsByCategory) {
Expand All @@ -158,7 +158,7 @@ async function generateMarketplaceExtensionsListMarkdown(extensionInfos) {
async function generateMarketplaceLanguageExtensionsListMarkdown(extensionInfos) {
const extensionsByCategory = groupExtensionsByType(extensionInfos);

/** @type {import('mdast').Content[]} */
/** @type {import('mdast').RootContent[]} */
const mdastContent = [];

const headingTitle = {
Expand All @@ -178,7 +178,7 @@ async function generateMarketplaceLanguageExtensionsListMarkdown(extensionInfos)

/**
*
* @param {import('mdast').Content[]} mdastContent
* @param {import('mdast').RootContent[]} mdastContent
* @param {string} filename
*/
async function writeContentToFile(mdastContent, filename) {
Expand Down
Loading