forked from deadlydog/PowerShell.tiPS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cspell.json
More file actions
50 lines (50 loc) · 1.76 KB
/
.cspell.json
File metadata and controls
50 lines (50 loc) · 1.76 KB
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
45
46
47
48
49
50
// 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",
"src/tiPS/PowerShellTips.json",
"**/bin/**", // Ignore C# build output files.
"**/obj/**" // Ignore C# build output files.
],
"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
"DontShow", // PowerShell keyword
"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.
"<a .+title=\".+\"", // Ignore contributor usernames on the ReadMe page.
"<a .+alt=\".+\"" // Ignore contributor usernames on the ReadMe page.
]
}