Skip to content

Commit 605c58d

Browse files
committed
Initial commit
0 parents  commit 605c58d

File tree

222 files changed

+21000
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+21000
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017-2022 Street Side Software <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# CSpell AL Dictionary
2+
3+
AL Dictionary
4+
5+
This is a pre-built dictionary for use with CSpell.
6+
7+
## Installation
8+
9+
Global Install and add to CSpell global settings.
10+
11+
```sh
12+
npm install -g @cspell/dict-al
13+
cspell link add @cspell/dict-al
14+
```
15+
16+
## Uninstall from CSpell
17+
18+
```sh
19+
cspell link remove @cspell/dict-al
20+
```
21+
22+
## Manual Installation
23+
24+
Manual installation is useful if you want to include this dictionary as part of your CI/CD lint process.
25+
26+
```npm
27+
npm i @cspell/dict-al
28+
```
29+
30+
The `cspell-ext.json` file in this package should be added to the import section in your `cspell.json` file.
31+
32+
```javascript
33+
{
34+
//
35+
"import": ["@cspell/dict-al/cspell-ext.json"],
36+
//
37+
}
38+
```
39+
40+
## Dictionary Development
41+
42+
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
43+
44+
## License
45+
46+
MIT
47+
48+
> Some packages may have other licenses included.
49+
50+
<!--- @@inject: ../../static/footer.md --->
51+
52+
<br/>
53+
54+
---
55+
56+
<p align="center">
57+
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
58+
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
59+
</a>
60+
</p>
61+
62+
<!--- @@inject-end: ../../static/footer.md --->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"id": "al",
3+
"version": "0.2",
4+
"name": "AL",
5+
"description": "AL Dictionary",
6+
"readonly": true,
7+
"dictionaryDefinitions": [
8+
{
9+
"name": "al",
10+
"path": "./dict/al.txt",
11+
"description": "AL Keywords Dictionary"
12+
}
13+
],
14+
"dictionaries": [],
15+
"enableFiletypes": ["al"],
16+
"languageSettings": [
17+
{
18+
"languageId": "al",
19+
"locale": "*",
20+
"includeRegExpList": [],
21+
"ignoreRegExpList": [],
22+
"patterns": [],
23+
"dictionaries": ["al"],
24+
"dictionaryDefinitions": []
25+
}
26+
],
27+
"overrides": [
28+
{
29+
"filename": "**/*.al",
30+
"languageId": "al"
31+
}
32+
]
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Dict Directory
2+
3+
NOTE: This directory contains generated content. Please edit [src](../src/README.md) files.

0 commit comments

Comments
 (0)