-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcspell.json
More file actions
33 lines (33 loc) · 1.15 KB
/
Copy pathcspell.json
File metadata and controls
33 lines (33 loc) · 1.15 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
{
"dictionaryDefinitions": [
{
"name": "luajit-moonscript",
"description": "The LuaJIT + MoonScript + Lua 5.1 delta that @cspell/dict-lua omits: bit ops, removed 5.1 builtins, MoonScript, and Lua concept/prose terms. Reusable across LuaJIT/MoonScript projects.",
"path": "./.cspell/luajit-moonscript.txt",
"scope": "workspace",
"addWords": false
},
{
"name": "ffi",
"description": "C API symbols bound via LuaJIT FFI: POSIX, Windows, and libcurl. Reusable across FFI-using projects.",
"path": "./.cspell/ffi.txt",
"scope": "workspace",
"addWords": false
},
{
"name": "project",
"description": "Everything specific to this repo and the DepCtrl ecosystem: own identifiers, rock/tool proper nouns, and prose jargon. Quick-added words land here.",
"path": "./.cspell/project.txt",
"scope": "workspace",
"addWords": true
}
],
"dictionaries": ["lua", "luajit-moonscript", "ffi", "project"],
"ignorePaths": [".cspell/**", "**/vendor/**"],
"overrides": [
{
"filename": "**/.github/workflows/*.{yml,yaml}",
"dictionaries": ["bash"]
}
]
}