generated from deadlydog/Template.NewGitRepo
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.cspell.json
42 lines (42 loc) · 1.3 KB
/
.cspell.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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": [
"**/_.gitattributes",
"**/_.gitignore",
"**/devcontainer.json",
"**/build-and-test-powershell-module.yml",
"**/build-test-and-deploy-powershell-module.yml"
],
"words": [
"behaviour",
"gif",
"gifs",
"hashtable",
"remoting",
"runspace",
"runspaces"
],
"ignoreWords": [
"chsh", // Change shell
"CICD", // Continuous Integration/Continuous Deployment
"CODEOWNERS", // GitHub CODEOWNERS
"Codespace", // GitHub Codespaces
"Codespaces", // GitHub Codespaces
"devcontainer", // VS Code devcontainer
"devcontainers", // VS Code devcontainers
"gittools", // GitHub action author
"Hmmss", // Time format
"jacoco", // Java code coverage
"Leonhardt", // GitHub action author
"madrapps", // GitHub action author
"nupkg", // NuGet package
"nunit", // .NET unit testing framework
"pwsh", // PowerShell Core
"yzhang" // GitHub action author
]
}