Skip to content

Commit

Permalink
feat(spelling): Add spelling checks to the code (#31)
Browse files Browse the repository at this point in the history
* feat(mdlint): Add Repo wide Markdown linting and vscode tasks.

* feat(languages): Add all available foreign language dictionaries to support future translation needs.

* feat(spelling): Add spelling checks and configuration

* fix(spelling): Fix spelling issues from merging changes from main branch
  • Loading branch information
stevenj authored Oct 4, 2023
1 parent 8517102 commit a702d09
Show file tree
Hide file tree
Showing 193 changed files with 19,918 additions and 20 deletions.
21 changes: 21 additions & 0 deletions .config/dictionaries/cspell/al/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017-2022 Street Side Software <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
62 changes: 62 additions & 0 deletions .config/dictionaries/cspell/al/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# CSpell AL Dictionary

AL Dictionary

This is a pre-built dictionary for use with CSpell.

## Installation

Global Install and add to CSpell global settings.

```sh
npm install -g @cspell/dict-al
cspell link add @cspell/dict-al
```

## Uninstall from CSpell

```sh
cspell link remove @cspell/dict-al
```

## Manual Installation

Manual installation is useful if you want to include this dictionary as part of your CI/CD lint process.

```npm
npm i @cspell/dict-al
```

The `cspell-ext.json` file in this package should be added to the import section in your `cspell.json` file.

```javascript
{
//
"import": ["@cspell/dict-al/cspell-ext.json"],
//
}
```

## Dictionary Development

See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)

## License

MIT

> Some packages may have other licenses included.
<!--- @@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 --->
33 changes: 33 additions & 0 deletions .config/dictionaries/cspell/al/cspell-ext.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"id": "al",
"version": "0.2",
"name": "AL",
"description": "AL Dictionary",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "al",
"path": "./dict/al.txt",
"description": "AL Keywords Dictionary"
}
],
"dictionaries": [],
"enableFiletypes": ["al"],
"languageSettings": [
{
"languageId": "al",
"locale": "*",
"includeRegExpList": [],
"ignoreRegExpList": [],
"patterns": [],
"dictionaries": ["al"],
"dictionaryDefinitions": []
}
],
"overrides": [
{
"filename": "**/*.al",
"languageId": "al"
}
]
}
3 changes: 3 additions & 0 deletions .config/dictionaries/cspell/al/dict/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Dict Directory

NOTE: This directory contains generated content. Please edit [src](../src/README.md) files.
Loading

0 comments on commit a702d09

Please sign in to comment.