Files
davideisinger.com/.cspell.json
David Eisinger 30b51f94b0 configure cspell
2024-11-18 14:19:34 -05:00

36 lines
707 B
JSON

{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"dictionaryDefinitions": [
{
"name": "exceptions",
"path": ".dictionary",
"addWords": true
}
],
"dictionaries": [
"english",
"ruby",
"golang",
"exceptions"
],
"patterns": [
{
"name": "frontmatter",
"pattern": "/^(-{3}|[+]{3})$(\\s|\\S)*?^\\1$/gm"
},
{
"name": "proper_nouns",
"pattern": "/(^|\\s|\\[|_|\\(|\"|\/|\\*)[A-Z][\\S]*/g"
}
],
"languageSettings": [
{
"languageId": "markdown",
"ignoreRegExpList": [
"frontmatter",
"proper_nouns"
]
}
]
}