2022-07-04 14:51:36 +01:00
|
|
|
// cSpell Settings
|
|
|
|
{
|
|
|
|
// Version of the setting file. Always 0.2
|
|
|
|
"version": "0.2",
|
|
|
|
// language - current active spelling language
|
|
|
|
"language": "en_US",
|
2023-06-08 13:30:31 +01:00
|
|
|
"dictionaries": ["en_US", "typescript", "softwareTerms", "fonts", "npm"],
|
2022-07-04 14:51:36 +01:00
|
|
|
// words - list of words to be always considered correct
|
|
|
|
"words": [
|
2023-03-30 19:59:23 +01:00
|
|
|
"Abjad",
|
2022-07-04 14:51:36 +01:00
|
|
|
"aiueo",
|
2023-03-30 19:59:23 +01:00
|
|
|
"ATLEAST",
|
2022-07-04 14:51:36 +01:00
|
|
|
"chosung",
|
2023-03-30 19:59:23 +01:00
|
|
|
"clippy",
|
2022-07-05 05:06:32 +01:00
|
|
|
"datas",
|
2023-03-30 19:59:23 +01:00
|
|
|
"docsify",
|
|
|
|
"dolan",
|
2023-03-30 20:13:35 +01:00
|
|
|
"execa",
|
2023-03-30 19:59:23 +01:00
|
|
|
"falsey",
|
2023-12-22 10:25:00 +09:00
|
|
|
"horz",
|
2023-06-08 13:30:31 +01:00
|
|
|
"iife",
|
2023-03-30 19:59:23 +01:00
|
|
|
"Initializable",
|
|
|
|
"iroha",
|
|
|
|
"jsonify",
|
2022-07-05 05:06:32 +01:00
|
|
|
"jszip",
|
|
|
|
"NUMPAGES",
|
2023-03-30 19:59:23 +01:00
|
|
|
"odttf",
|
2023-06-08 13:30:31 +01:00
|
|
|
"ondata",
|
|
|
|
"onfile",
|
2022-07-06 14:05:37 +01:00
|
|
|
"ooxml",
|
2023-03-30 19:59:23 +01:00
|
|
|
"panose",
|
|
|
|
"rels",
|
|
|
|
"rsid",
|
|
|
|
"twip",
|
|
|
|
"twips",
|
|
|
|
"Xmlable",
|
|
|
|
"xmlified",
|
|
|
|
"xmlify",
|
|
|
|
"Xmlifyed"
|
2022-07-05 05:06:32 +01:00
|
|
|
],
|
|
|
|
"ignoreRegExpList": [
|
2022-07-06 14:05:37 +01:00
|
|
|
"/\"w:.+\"/",
|
|
|
|
"/\"s:.+\"/",
|
|
|
|
"/\"a:.+\"/",
|
|
|
|
"/\"pic:.+\"/",
|
|
|
|
"/\"xmlns:.+\"/",
|
|
|
|
"/\"vt:.+\"/",
|
2022-07-05 05:06:32 +01:00
|
|
|
"/[^\\s]{40,}/",
|
|
|
|
"/<xsd:.+/>/",
|
|
|
|
"/[A-Z_]+ = \".+\"/",
|
|
|
|
"/XmlAttributeComponent<{[^}]+}>/g",
|
|
|
|
"/xmlKeys = {[^}]+}/g",
|
|
|
|
"/\\.to\\.deep\\.equal\\({[^)]+}\\)/g",
|
|
|
|
"\\.to\\.include\\.members\\(\\[[^\\]]+]\\)",
|
2022-12-26 15:12:44 +00:00
|
|
|
"/new [a-zA-Z]+\\({[^£]+}\\)/g",
|
|
|
|
"/<element name=\"[a-z]+\"/gi",
|
|
|
|
"/<attribute name=\"[a-z]+\"/gi"
|
2022-07-04 14:51:36 +01:00
|
|
|
],
|
2023-06-08 13:30:31 +01:00
|
|
|
"ignorePaths": ["package.json", "docs/api", "*.docx", "build"],
|
2022-07-04 14:51:36 +01:00
|
|
|
"allowCompoundWords": true,
|
|
|
|
// flagWords - list of words to be always considered incorrect
|
|
|
|
// This is useful for offensive words and common spelling errors.
|
|
|
|
// For example "hte" should be "the"
|
2023-06-08 13:30:31 +01:00
|
|
|
"flagWords": ["hte"]
|
2022-07-04 14:51:36 +01:00
|
|
|
}
|