|
1191 | 1191 | "markdownDescription": "A list of suggested replacements for words.\nSuggested words provide a way to make preferred suggestions on word replacements.\nTo hint at a preferred change, but not to require it.\n\nFormat of `suggestWords`\n- Single suggestion (possible auto fix)\n - `word: suggestion`\n - `word->suggestion`\n- Multiple suggestions (not auto fixable)\n - `word: first, second, third`\n - `word->first, second, third`",
|
1192 | 1192 | "type": "array"
|
1193 | 1193 | },
|
| 1194 | + "unknownWords": { |
| 1195 | + "default": "report-all", |
| 1196 | + "description": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1197 | + "enum": [ |
| 1198 | + "report-all", |
| 1199 | + "report-simple", |
| 1200 | + "report-common-typos", |
| 1201 | + "report-flagged" |
| 1202 | + ], |
| 1203 | + "markdownDescription": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1204 | + "since": "9.1.0", |
| 1205 | + "type": "string" |
| 1206 | + }, |
1194 | 1207 | "words": {
|
1195 | 1208 | "description": "List of words to be considered correct.",
|
1196 | 1209 | "items": {
|
|
1345 | 1358 | "markdownDescription": "The maximum amount of time in milliseconds to generate suggestions for a word.",
|
1346 | 1359 | "type": "number"
|
1347 | 1360 | },
|
| 1361 | + "unknownWords": { |
| 1362 | + "default": "report-all", |
| 1363 | + "description": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1364 | + "enum": [ |
| 1365 | + "report-all", |
| 1366 | + "report-simple", |
| 1367 | + "report-common-typos", |
| 1368 | + "report-flagged" |
| 1369 | + ], |
| 1370 | + "markdownDescription": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1371 | + "since": "9.1.0", |
| 1372 | + "type": "string" |
| 1373 | + }, |
1348 | 1374 | "usePnP": {
|
1349 | 1375 | "default": false,
|
1350 | 1376 | "description": "Packages managers like Yarn 2 use a `.pnp.cjs` file to assist in loading packages stored in the repository.\n\nWhen true, the spell checker will search up the directory structure for the existence of a PnP file and load it.",
|
|
1409 | 1435 | "markdownDescription": "Defines a list of patterns that can be used with the `#cSpell.ignoreRegExpList#` and\n`#cSpell.includeRegExpList#` options.\n\n**Example:**\n\n```jsonc\n\"cSpell.patterns\": [\n {\n \"name\": \"comment-single-line\",\n \"pattern\": \"/#.*/g\"\n },\n {\n \"name\": \"comment-multi-line\",\n \"pattern\": \"/(?:\\\\/\\\\*[\\\\s\\\\S]*?\\\\*\\\\/)/g\"\n }\n]\n```",
|
1410 | 1436 | "scope": "resource",
|
1411 | 1437 | "type": "array"
|
| 1438 | + }, |
| 1439 | + "cSpell.unknownWords": { |
| 1440 | + "default": "report-all", |
| 1441 | + "description": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1442 | + "enum": [ |
| 1443 | + "report-all", |
| 1444 | + "report-simple", |
| 1445 | + "report-common-typos", |
| 1446 | + "report-flagged" |
| 1447 | + ], |
| 1448 | + "markdownDescription": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 1449 | + "since": "9.1.0", |
| 1450 | + "type": "string" |
1412 | 1451 | }
|
1413 | 1452 | },
|
1414 | 1453 | "title": "CSpell",
|
|
2663 | 2702 | "markdownDescription": "A list of suggested replacements for words.\nSuggested words provide a way to make preferred suggestions on word replacements.\nTo hint at a preferred change, but not to require it.\n\nFormat of `suggestWords`\n- Single suggestion (possible auto fix)\n - `word: suggestion`\n - `word->suggestion`\n- Multiple suggestions (not auto fixable)\n - `word: first, second, third`\n - `word->first, second, third`",
|
2664 | 2703 | "type": "array"
|
2665 | 2704 | },
|
| 2705 | + "unknownWords": { |
| 2706 | + "default": "report-all", |
| 2707 | + "description": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 2708 | + "enum": [ |
| 2709 | + "report-all", |
| 2710 | + "report-simple", |
| 2711 | + "report-common-typos", |
| 2712 | + "report-flagged" |
| 2713 | + ], |
| 2714 | + "markdownDescription": "Controls how unknown words are handled.\n\n- `report-all` - Report all unknown words (default behavior)\n- `report-simple` - Report unknown words that have simple spelling errors, typos, and flagged words.\n- `report-common-typos` - Report unknown words that are common typos and flagged words.\n- `report-flagged` - Report unknown words that are flagged.", |
| 2715 | + "since": "9.1.0", |
| 2716 | + "type": "string" |
| 2717 | + }, |
2666 | 2718 | "words": {
|
2667 | 2719 | "description": "List of words to be considered correct.",
|
2668 | 2720 | "items": {
|
|
0 commit comments