-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cspell.json
More file actions
27 lines (27 loc) · 838 Bytes
/
.cspell.json
File metadata and controls
27 lines (27 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// This is the configuration file for cspell (code spell check).
// Use this to define legitimate words not in the dictionary, and other words the spellcheck should ignore.
// Used by the streetsidesoftware.code-spell-checker VS Code extension and streetsidesoftware/cspell-action@v3 GitHub Action.
// For more information on configuration, see https://cspell.org/configuration/.
{
"version": "0.2",
"language": "en",
"ignorePaths": [
".devcontainer/devcontainer.json",
".github/workflows/build-and-test-powershell-module.yml",
".github/workflows/build-test-and-deploy-powershell-module.yml",
".gitignore",
".vscode/extensions.json"
],
"words": [
"colours",
"gifs",
"hashtable", // PowerShell Hashtable
"outputtype", // PowerShell keyword
"unshown"
],
"ignoreWords": [
"devcontainer",
"pkgs",
"pwsh"
]
}