forked from ni/nidaqmx-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
46 lines (46 loc) · 2.2 KB
/
cspell.json
File metadata and controls
46 lines (46 loc) · 2.2 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
{
"version": "0.2",
"globRoot": "${cwd}",
// Keep the following list of items in alphabetical order.
"dictionaryDefinitions": [
{ "name": "daqmx-api-elements", "path": "./cspell/daqmx-api-elements.txt", "noSuggest": true },
{ "name": "real-words", "path": "./cspell/real-words.txt", "noSuggest": false },
{ "name": "mako-keywords", "path": "./cspell/mako-keywords.txt", "noSuggest": true },
{ "name": "project-software-terms", "path": "./cspell/project-software-terms.txt", "noSuggest": true },
{ "name": "sphinx-directives", "path": "./cspell/sphinx-directives.txt", "noSuggest": true }
],
"dictionaries": ["real-words", "daqmx-api-elements", "project-software-terms", "python"],
"useGitignore": true,
// Keep the following list of items in the order that they appear in VSCode
// Explorer (directories in alphabetical order, followed by top-level files
// in alphabetical order).
"ignorePaths": [
".config/cspell/**", // dictionary source files; words here are not prose
"docs/img/**", // binary image files
"docs/conf.py", // Sphinx config; extension names and config keys
"docs/make.bat", // Sphinx build script; not prose
"docs/Makefile", // Sphinx build script; not prose
"generated/nidaqmx/_stubs/**", // protobuf-generated stubs; too noisy to check
"tests/max_config/**", // NI MAX config files; NI-specific identifiers
"tests/test_assets/**", // test fixture files; not prose
"third_party/**", // third-party code we don't own or control
".readthedocs.yml", // ReadTheDocs config
"poetry.lock", // auto-generated lock file; hashes and package URLs
"poetry.toml", // Poetry config
"tox.ini" // tox config
],
"overrides": [
{
"filename": "**/*.mako",
"dictionaries": ["real-words", "daqmx-api-elements", "python", "mako-keywords"]
},
{
"filename": "**/*.rst",
"dictionaries": ["real-words", "daqmx-api-elements", "python", "sphinx-directives"]
},
{
"filename": "**/CONTRIBUTING.md",
"dictionaries": ["real-words"]
}
]
}