|
| 1 | +// cSpell Settings |
| 2 | +{ |
| 3 | + "id": "hy_AM", |
| 4 | + "version": "0.2", |
| 5 | + "name": "Armenian", |
| 6 | + "description": "Armenian dictionary for cspell.", |
| 7 | + "readonly": true, |
| 8 | + // List of dictionary files to add to the global list of dictionaries |
| 9 | + "dictionaryDefinitions": [ |
| 10 | + { |
| 11 | + "name": "hy_am", |
| 12 | + "path": "./dict/hy.trie", |
| 13 | + "description": "Armenian dictionary for cspell." |
| 14 | + } |
| 15 | + ], |
| 16 | + // Dictionaries to always be used. |
| 17 | + // Generally left empty |
| 18 | + "dictionaries": [], |
| 19 | + // Language Rules to apply to matching files. |
| 20 | + // Files are matched on `languageId` and `locale` |
| 21 | + "languageSettings": [ |
| 22 | + { |
| 23 | + // VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex |
| 24 | + // * will match against any file type. |
| 25 | + "languageId": "*", |
| 26 | + // Language locale. i.e. en-US, de-AT, or ru. * will match all locales. |
| 27 | + // Multiple locales can be specified like: "en, en-US" to match both English and English US. |
| 28 | + "locale": "hy,hy-AM", |
| 29 | + // By default the whole text of a file is included for spell checking |
| 30 | + // Adding patterns to the "includeRegExpList" to only include matching patterns |
| 31 | + "includeRegExpList": [], |
| 32 | + // To exclude patterns, add them to "ignoreRegExpList" |
| 33 | + "ignoreRegExpList": [], |
| 34 | + // regex patterns than can be used with ignoreRegExpList or includeRegExpList |
| 35 | + // Example: "pattern": [{ "name": "mdash", "pattern": "—" }] |
| 36 | + // This could be included in "ignoreRegExpList": ["mdash"] |
| 37 | + "patterns": [], |
| 38 | + // List of dictionaries to enable by name in `dictionaryDefinitions` |
| 39 | + "dictionaries": ["hy_am"], |
| 40 | + // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "locale" match. |
| 41 | + "dictionaryDefinitions": [] |
| 42 | + } |
| 43 | + ] |
| 44 | +} |
0 commit comments