-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
24 lines (24 loc) · 788 Bytes
/
Copy pathcspell.json
File metadata and controls
24 lines (24 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"version": "0.2",
"enabled": true,
"ignorePaths": ["Makefile", ".gitlab-ci.yml", ".pre-commit-config.yaml", ".copier-answers.yml", ".github"],
"dictionaryDefinitions": [
{
"name": "project-terms",
"path": "project-terms.txt",
"description": "Names and terms related to this project."
}
],
"note": "List of built-in dictionaries: https://cspell.org/docs/dictionaries/",
"dictionaries": ["en_us", "project-terms", "softwareTerms", "python", "python-common"],
"ignoreWords": ["pyupgrade", "autobuild", "toctree", "mkdocs", "mkdocstrings", "timeago"],
"language": "en-US",
"useGitignore": true,
"overrides": [
{
// Case sensitive spellchecking for Markdown files
"filename": "**/*.md",
"caseSensitive": true
}
]
}