UNPKG

@cspell/dict-grc

Version:
45 lines (44 loc) 1.93 kB
// cSpell Settings { "id": "grc", "version": "0.2", "name": "Ancient Greek", "description": "Ancient Greek dictionary.", "readonly": true, // List of dictionary files to add to the global list of dictionaries "dictionaryDefinitions": [ { "name": "grc", "path": "./dict/grc.trie", "description": "Ancient Greek dictionary." } ], // Dictionaries to always be used. // Generally left empty "dictionaries": [], // Language Rules to apply to matching files. // Files are matched on `languageId` and `locale` "languageSettings": [ { // VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex // * will match against any file type. "languageId": "*", // Language locale. i.e. en-US, de-AT, or ru. * will match all locales. // Multiple locales can be specified like: "en, en-US" to match both English and English US. "locale": "grc,grc_GR,gr,el-GRC", // By default the whole text of a file is included for spell checking // Adding patterns to the "includeRegExpList" to only include matching patterns "includeRegExpList": [], // To exclude patterns, add them to "ignoreRegExpList" "ignoreRegExpList": [], // regex patterns than can be used with ignoreRegExpList or includeRegExpList // Example: "pattern": [{ "name": "mdash", "pattern": "—" }] // This could be included in "ignoreRegExpList": ["mdash"] "patterns": [], // List of dictionaries to enable by name in `dictionaryDefinitions` "dictionaries": ["grc"], // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "locale" match. "dictionaryDefinitions": [] } ] }