-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(spelling): Add spelling checks to the code (#31)
* 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
Showing
193 changed files
with
19,918 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ---> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.