davideisinger.com

My personal website
Log | Files | Refs | README

.cspell.json (700B)


      1 {
      2   "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
      3   "version": "0.2",
      4   "dictionaryDefinitions": [
      5     {
      6       "name": "exceptions",
      7       "path": ".dictionary",
      8       "addWords": true
      9     }
     10   ],
     11   "dictionaries": [
     12     "english",
     13     "ruby",
     14     "golang",
     15     "java",
     16     "exceptions"
     17   ],
     18   "patterns": [
     19     {
     20       "name": "front_matter",
     21       "pattern": "/^(-{3}|[+]{3})$(\\s|\\S)*?^\\1$/gm"
     22     },
     23     {
     24       "name": "proper_nouns",
     25       "pattern": "/[\\W_][A-Z][\\S]+/g"
     26     }
     27   ],
     28   "languageSettings": [
     29     {
     30       "languageId": "markdown",
     31       "ignoreRegExpList": [
     32         "front_matter",
     33         "proper_nouns"
     34       ]
     35     }
     36   ]
     37 }