|
39 | 39 | "properties": {
|
40 | 40 | "allowCompoundWords": {
|
41 | 41 | "default": false,
|
42 |
| - "description": "True to enable compound word checking. See https://cspell.org/docs/case-sensitive/ for more details.", |
| 42 | + "description": "True to enable compound word checking. See [Case Sensitivity](https://cspell.org/docs/case-sensitive/) for more details.", |
43 | 43 | "type": "boolean"
|
44 | 44 | },
|
45 | 45 | "dictionaries": {
|
46 |
| - "description": "Optional list of dictionaries to use. Each entry should match the name of the dictionary.", |
| 46 | + "description": "Optional list of dictionaries to use. Each entry should match the name of the dictionary.\n\nTo remove a dictionary from the list, add `!` before the name.\n\nFor example, `!typescript` will turn off the dictionary with the name `typescript`.\n\nSee the [Dictionaries](https://cspell.org/docs/dictionaries/) and [Custom Dictionaries](https://cspell.org/docs/dictionaries-custom/) for more details.", |
47 | 47 | "items": {
|
48 | 48 | "description": "Reference to a dictionary by name. One of:\n- {@link DictionaryRef } \n- {@link DictionaryNegRef }",
|
49 | 49 | "type": "string"
|
|
111 | 111 | "type": "boolean"
|
112 | 112 | },
|
113 | 113 | "flagWords": {
|
114 |
| - "description": "List of words to always be considered incorrect. Words found in `flagWords` override `words`.", |
| 114 | + "description": "List of words to always be considered incorrect. Words found in `flagWords` override `words`.\n\nFormat of `flagWords`\n- single word entry - `word`\n- with suggestions - `word:suggestion` or `word->suggestion, suggestions`\n\nExample: ```ts \"flagWords\": [ \"color: colour\", \"incase: in case, encase\", \"canot->cannot\", \"cancelled->canceled\" ] ```", |
115 | 115 | "items": {
|
116 | 116 | "type": "string"
|
117 | 117 | },
|
118 | 118 | "type": "array"
|
119 | 119 | },
|
120 | 120 | "ignoreRegExpList": {
|
121 |
| - "description": "List of regular expression patterns or pattern names to exclude from spell checking.", |
| 121 | + "description": "List of regular expression patterns or pattern names to exclude from spell checking.\n\nExample: `[\"href\"]` - to exclude html href pattern.\n\nRegular expressions use JavaScript regular expression syntax.\n\nExample: to ignore ALL-CAPS words\n\nJSON ```json \"ignoreRegExpList\": [\"/\\\\b[A-Z]+\\\\b/g\"] ```\n\nYAML ```yaml ignoreRegExpList: - >- /\\b[A-Z]+\\b/g ```\n\nBy default, several patterns are excluded. See [Configuration](https://cspell.org/configuration/patterns) for more details.\n\nWhile you can create your own patterns, you can also leverage several patterns that are [built-in to CSpell](https://cspell.org/types/cspell-types/types/PredefinedPatterns.html).", |
122 | 122 | "items": {
|
123 | 123 | "description": "A PatternRef is a Pattern or PatternId.",
|
124 | 124 | "type": "string"
|
|
146 | 146 | "type": "array"
|
147 | 147 | }
|
148 | 148 | ],
|
149 |
| - "description": "Allows this configuration to inherit configuration for one or more other files.\n\nSee https://cspell.org/configuration/imports/ for more details." |
| 149 | + "description": "Allows this configuration to inherit configuration for one or more other files.\n\nSee [Importing / Extending Configuration](https://cspell.org/configuration/imports/) for more details." |
150 | 150 | },
|
151 | 151 | "includeRegExpList": {
|
152 |
| - "description": "List of regular expression patterns or defined pattern names to match for spell checking.", |
| 152 | + "description": "List of regular expression patterns or defined pattern names to match for spell checking.\n\nIf this property is defined, only text matching the included patterns will be checked.\n\nWhile you can create your own patterns, you can also leverage several patterns that are [built-in to CSpell](https://cspell.org/types/cspell-types/types/PredefinedPatterns.html).", |
153 | 153 | "items": {
|
154 | 154 | "description": "A PatternRef is a Pattern or PatternId.",
|
155 | 155 | "type": "string"
|
|
0 commit comments