-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcspell.json
39 lines (39 loc) · 877 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en, es",
"import": ["@cspell/dict-es-es/cspell-ext.json"],
"allowCompoundWords": false,
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./cspell-project-words.txt",
"addWords": true
}
],
"dictionaries": ["project-words"],
"ignorePaths": [
"**/*-keys-dev/**",
"**/*.snap",
"**/.git/**",
"**/TestResults/**",
"**/__snapshots__/**",
"**/bin/**",
"**/lib/**",
"**/node_modules/**",
"**/obj/**",
"**/vscode-extension/**",
"*.csproj",
"*.svg",
".eslintrc.js",
".gitignore",
".prettierignore",
"/build",
"coverage/**",
"cspell.json",
"package-lock.json",
"pnpm-lock.yaml",
"yarn.lock",
"__pycache__"
]
}