You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
// cSpell Settings |
|
{ |
|
"id": "en-gb", |
|
"name": "British English Dictionary", |
|
"description": "British English Dictionary", |
|
// List of dictionary files to add to the global list of dictionaries |
|
"dictionaryDefinitions": [ |
|
{ |
|
"name": "en-gb", |
|
"file": "./en_GB.trie.gz", |
|
"repMap": [["'|`|’", "'"]], |
|
"description": "British English Dictionary" |
|
} |
|
], |
|
// Dictionaries to always be used. |
|
// Generally left empty |
|
"dictionaries": [], |
|
// Language Rules to apply to matching files. |
|
// Files are matched on `languageId` and `local` |
|
"languageSettings": [ |
|
{ |
|
// VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex |
|
// * will match against any file type. |
|
"languageId": "*", |
|
// Language local. i.e. en-US, de-AT, or ru. * will match all locals. |
|
"local": "en-GB", |
|
// |
|
"ignoreRegExpList": [], |
|
"includeRegExpList": [], |
|
// regex patterns than can be used with ignoreRegExpList or includeRegExpList |
|
// Example: "pattern": [{ "name": "mdash", "pattern": "—" }] |
|
// This could be included in "ignoreRegExpList": ["mdash"] |
|
"patterns": [ |
|
{ |
|
"name": "possessive_s", |
|
"pattern": "/'s\\b/gi" |
|
} |
|
], |
|
// List of dictionaries to enable by name in `dictionaryDefinitions` |
|
"dictionaries": ["en-gb"], |
|
// Dictionary definitions can also be supplied here |
|
"dictionaryDefinitions": [] |
|
} |
|
] |
|
}
|
|
|