-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.cspell.json
43 lines (43 loc) · 1.07 KB
/
.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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"caseSensitive": true,
"dictionaries": ["workspace", "ignore words", "en_US", "!typescript", "!node"],
"dictionaryDefinitions": [
{
"addWords": true,
"description": "Custom Workspace Dictionary",
"name": "workspace",
"path": ".cspell-dict.txt"
},
{
"addWords": true,
"description": "Words to be ignored",
"name": "ignore words",
"noSuggest": true,
"path": ".cspell-ignore.txt"
}
],
"ignorePaths": [
// Cspell Condfiguration
".cspell.json",
// Pre-commit Configuration
".pre-commit-config.yaml",
// Git Configuration
".gitignore",
// Node Condfiguration
"node_modules",
"package.json",
"bun.lockb",
"tsconfig.json"
],
"overrides": [
{
"description": "JavaScript and TypeScript files",
"dictionaries": ["!!typescript", "!!node"],
"filename": "**/*.{js,jsx,ts,tsx}",
"name": "JS/TS"
}
],
"readonly": true,
"useGitignore": true
}