generated from deadlydog/Template.NewGitRepo
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.cspell.json
44 lines (44 loc) · 1.47 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
43
44
// 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",
"src/tiPS/PowerShellTips.json"
],
"words": [
"colours",
"gifs",
"hashtable", // PowerShell Hashtable
"unshown"
],
"ignoreWords": [
"Codespace", // GitHub Codespaces
"Codespaces", // GitHub Codespaces
"datetime", // PowerShell type
"dawidd", // GitHub action author
"deadlydog", // Username
"devcontainer", // VS Code devcontainer
"gittools", // GitHub action author
"Hmmss", // Time format
"jacoco", // Java code coverage
"Leonhardt", // Person's name
"madrapps", // GitHub action author
"netstandard", // .NET Standard project target
"nunit", // .NET unit testing framework
"PowerShelldle", // PowerShell game
"pscredential", // PowerShell type
"pscustomobject", // PowerShell type
"pwsh", // PowerShell Core
"RTPSUG", // PowerShell user group
"Wordle" // Game
],
"ignoreRegExpList": [
"^\\$tip\\.Author = .*$" // Ignore tip Author names
]
}