-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcspell.json
56 lines (56 loc) · 1.16 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"$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"
],
"ignoreRegExpList": [
"%[23][FD]\\w+",
"ñ",
"\\.resx",
"eyJhbGciOiJ[a-zA-Z0-9\\._-]+"
],
"overrides": [
{
"filename": "sample-user-fields.json",
"ignoreWords": [
"PAIS",
"ELECTRONICO",
"CUMPLEANOS",
"FIRSTNAME",
"LASTNAME"
]
}
]
}