-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.config.jsonc
More file actions
139 lines (134 loc) · 2.92 KB
/
cspell.config.jsonc
File metadata and controls
139 lines (134 loc) · 2.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"language": "en",
"useGitignore": false,
"allowCompoundWords": false,
"ignoreRandomStrings": true,
"ignorePaths": [
"**/.git/{index,*refs,*HEAD}",
"**/.git/{info,lfs,logs,refs,objects}/**",
"**/.venv/",
"**/*-lock.*",
"**/*.env",
"**/*.lock",
"**/node_modules/"
],
"ignoreRegExpList": [
// 1Password secret references
"\\b[a-z0-9]{20,}\\b",
// Full-caps acronyms of 3-5 length
"\\b[A-Z]{3,5}\\b",
// All-caps variable names with underscores (e.g., 'INSTALL_CROC')
"\\b[A-Z]+_[A-Z0-9_]+\\b",
// Partial words in text like '[Dd]esktop'
"\\[[A-Za-z]{1,2}\\][a-zA-Z]+",
// File extensions of 1-6 length (e.g., '.icns', '.ovpn', etc.)
"\\.[a-zA-Z]{1,6}(?![a-zA-Z])",
// SSH keys and base64-like strings
"\\b[A-Za-z0-9+/]{20,}={0,2}\\b",
// Password hashes (starts with '$', alphanumeric and special chars)
"\\$[0-9]\\$[A-Za-z0-9./]+\\$[A-Za-z0-9./]+",
// Azure AI Assistant IDs (e.g. 'asst_KrJDWyHZjoZbhFjEFutuDYsW')
"\\basst_[A-Za-z0-9]{20,}\\b"
],
"dictionaryDefinitions": [
{
"addWords": true,
"description": "Workspace Custom Wordlist ('.vscode/config/cspell.txt')",
"name": "Workspace Custom Wordlist",
"path": "./.vscode/config/cspell.txt"
},
{
"addWords": true,
"description": "User Custom Wordlist ('~/.config/cspell/cspell.txt')",
"name": "User Custom Wordlist",
"path": "~/.config/cspell/cspell.txt"
}
],
"dictionaries": [
// Custom dictionaries
"Workspace Custom Wordlist",
"User Custom Wordlist",
// Dictionaries provided by cspell
"ada",
"aws",
"bash",
"city-names-finland",
"clojure",
"coding-compound-terms",
"companies",
"computing-acronyms",
"cpp",
"cryptocurrencies",
"csharp",
"css",
"dart",
"data-science-models",
"data-science-tools",
"data-science",
"de-de",
"django",
"docker",
"dotnet",
"elisp",
"elixir",
"en_us",
"en-common-misspellings",
"en-shared",
"en-us-common-misspellings",
"filetypes",
"flutter",
"fonts",
"fsharp",
"fullstack",
"game-development",
"gaming-terms",
"gis",
"git",
"golang",
"google",
"grc",
"haskell",
"html-symbol-entities",
"html",
"java",
"julia",
"k8s",
"kotlin",
"la",
"latex",
"lorem-ipsum",
"lua",
"makefile",
"medical terms",
"mnemonics",
"monkeyc",
"networking-terms",
"node",
"npm",
"people-names",
"php",
"pokemon",
"powershell",
"public-licenses",
"python-common",
"python",
"r",
"redis",
"ruby",
"rust",
"scala",
"scientific-terms-us",
"shellscript",
"software-term-suggestions",
"software-tools",
"softwareTerms",
"sql",
"svelte",
"swift",
"terraform",
"typescript",
"vim",
"web-services",
"win32"
]
}