-
Notifications
You must be signed in to change notification settings - Fork 2
/
.cspell.json
37 lines (37 loc) · 1019 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en",
"useGitignore": true,
"caseSensitive": false,
"dictionaries": [
"typescript",
"node",
"html",
"css",
"bash",
"npm",
"filetypes",
"fonts",
"project",
"nodejs"
],
"ignorePaths": ["package.json", "pnpm-lock.yaml"],
"dictionaryDefinitions": [
{
"name": "project",
"path": "./.cspell/project.txt",
"description": "Wordings specific to this project and will not be shared with other projects"
},
{
"name": "aws",
"path": "./.cspell/aws.txt",
"description": "Keywords specific to the AWS project, including the names of AWS services and the terms used within them"
},
{
"name": "nodejs",
"path": "./.cspell/nodejs.txt",
"description": "Keywords specific to the Node.js project, including the names of node_modules and the terms used within them"
}
]
}