-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
36 lines (36 loc) · 915 Bytes
/
cspell.json
File metadata and controls
36 lines (36 loc) · 915 Bytes
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
{
"version": "0.2",
"language": "en,ru",
"words": ["Сalls", "Laptev", "saborter", "Saborter", "tgz", "Vladislav", "yxxx", "TENSIILE"],
"flagWords": [],
"ignorePaths": [
"node_modules/**",
"dist/**",
"build/**",
".git/**",
"coverage/**",
"*.log",
"package-lock.json",
"./**/*.test.ts",
"./cspell.json",
"./integrations"
],
"dictionaries": ["typescript", "node", "softwareTerms", "en_US", "ru_RU"],
"useGitignore": true,
"patterns": [
{
"name": "markdown-links",
"pattern": "\\(.*\\)",
"description": "Ignore URLs in Markdown"
},
{
"name": "html-entities",
"pattern": "&\\w+;",
"description": "Ignore HTML entities"
}
],
"ignoreRegExpList": ["/\\[.*\\]\\(.*\\)/g", "/&[a-z]+;/g", "/0x[a-fA-F0-9]+/g", "/\\$[^{][\\w.]+/g"],
"caseSensitive": false,
"allowCompoundWords": true,
"minWordLength": 3
}