-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
70 lines (70 loc) · 1.73 KB
/
Copy pathcspell.json
File metadata and controls
70 lines (70 loc) · 1.73 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
{
"version": "0.2",
"language": "en,de",
"words": [
"bau",
"devils",
"downhill",
"finisher",
"finishers",
"gpx",
"hochwald",
"hunsrück",
"komoot",
"newmatik",
"nutzungsbestimmungen",
"ottenbreit",
"rock",
"schmidtburg",
"slateman",
"soonwald",
"sponsoren",
"Tourenanbieter",
"trail",
"trails",
"ueber",
"webp"
],
"ignoreWords": [],
"patterns": [
{
"name": "HTML Attributes",
"pattern": "\\b(?:class|id|href|src|alt|title|data-[a-zA-Z-]+)\\b",
"description": "HTML attributes"
},
{
"name": "CSS Properties",
"pattern": "\\b(?:background|color|font|margin|padding|border|width|height|display|position|top|left|right|bottom|z-index|opacity|transform|transition|animation)\\b",
"description": "CSS properties"
},
{
"name": "JavaScript Keywords",
"pattern": "\\b(?:const|let|var|function|return|if|else|for|while|switch|case|break|continue|try|catch|finally|throw|new|this|super|class|extends|import|export|default|async|await|yield|typeof|instanceof|delete|void|in|of|with|debugger)\\b",
"description": "JavaScript keywords"
},
{
"name": "File Extensions",
"pattern": "\\.(?:html|css|js|json|png|jpg|jpeg|gif|svg|webp|gpx|ico|woff|woff2|ttf|eot)$",
"description": "File extensions"
}
],
"ignorePaths": [
"node_modules/**",
".git/**",
"*.min.js",
"*.min.css",
"*.bundle.js",
"dist/**",
"build/**",
".DS_Store"
],
"allowCompoundWords": true,
"caseSensitive": false,
"maxNumberOfProblems": 1000,
"minWordLength": 3,
"ignoreRegExpList": [
"/\\b[A-Z]{2,}\\b/g",
"/\\b\\d+\\b/g",
"/\\b0x[a-fA-F0-9]+\\b/g"
]
}