-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcspell.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathcspell.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en-GB",
"import": ["@cspell/dict-en-gb/cspell-ext.json"],
"ignorePaths": [
"**/node_modules/**",
"**/dist/**",
"**/.nx/**",
"**/coverage/**",
"**/__snapshots__/**",
"**/__image_snapshots__/**",
"**/package-lock.json",
"**/yarn.lock",
"**/*.min.js",
"**/*.map",
"**/_examples/**",
"**/generated-example-contents.json",
"**/docs/*-test/**"
],
"useGitignore": true,
"ignoreRegExpList": ["/id=\"[A-Za-z0-9_-]{11}\"/g"],
"dictionaryDefinitions": [
{
"name": "ag-charts-terms",
"path": "./packages/ag-charts-website/dictionaries/ag-charts-terms.txt",
"addWords": true
}
],
"dictionaries": ["ag-charts-terms"],
"overrides": [
{
"filename": "**/*.mdoc",
"languageId": "markdown"
},
{
"filename": "**/*.astro",
"languageId": "html"
},
{
"filename": "**/packages/ag-charts-website/**/*.{mdoc,md,astro,json}",
"language": "en-GB",
"dictionaries": ["en-gb", "ag-charts-terms"]
},
{
"filename": "**/landing-pages/*.json",
"words": ["whats"]
}
],
"languageSettings": [
{
"languageId": "markdown",
"locale": "en-GB"
},
{
"languageId": "typescript,javascript",
"dictionaries": ["typescript", "node", "ag-charts-terms"]
}
]
}