-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cspell.json
47 lines (47 loc) · 930 Bytes
/
.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
45
46
47
{
"version": "0.2",
"language": "en",
"dictionaries": ["en_us", "go"],
"words": [
"thegeeklab",
"kaussow",
"Containerfile",
"multiarch",
"propertylist",
"Msgf",
"tmpl",
"devel"
],
"ignorePaths": [
".woodpecker",
"*_test.go",
".cspell.json",
".git/**/*",
".gitignore",
".golangci.yaml",
".golangci.yml",
".mockery.yaml",
".mockery.yml",
".vscode",
"Makefile",
"go.mod",
// generated
"go.sum",
"renovate.json"
],
"ignoreRegExpList": [
// ignore mulltiline imports
"import\\s*\\((.|[\r\n])*?\\)",
// ignore single line imports
"import\\s*.*\".*?\"",
// ignore go generate directive
"//\\s*go:generate.*",
// ignore nolint directive
"//\\s*nolint:.*",
// ignore docker image names
"\\s*docker\\.io/.*",
// ignore colors
"color: .*"
],
"enableFiletypes": ["dockercompose"]
}