forked from FarmData2/FarmData2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cspell.json
44 lines (44 loc) · 889 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
40
41
42
43
44
{
"languageSettings": [
{
"languageId": "javascript",
"includeRegExpList": ["CStyleComment", "string"],
"ignoreRegExpList": ["/from\\s+(['\"]).*\\1/"]
}
],
"dictionaries": ["fd2-cspell"],
"dictionaryDefinitions": [
{
"name": "fd2-cspell",
"path": "./.fd2-cspell.txt",
"addWords": true
}
],
"import": ["@cspell/dict-vue/cspell-ext.json"],
"ignorePaths": [
"docker/db",
"**/dist",
"node_modules",
".fd2-cspell.txt",
"licenses",
".vscode",
".gitignore",
"LICENSE",
"LICENSE.txt",
"CHANGELOG.md",
"docs/components",
"docs/library",
"docs/FarmData2.md",
"modules/**/components.d.ts",
"modules/**/module/config",
"scratch",
".vale.ini",
".vale"
],
"enableFiletypes": [
"dockercompose",
"dockerfile",
"markdown-math",
"shellscript"
]
}