Files
docx-js/.cspell.json

74 lines
1.7 KiB
JSON
Raw Normal View History

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-03-30 19:59:23 +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-06-01 02:05:35 +01:00
"fflate",
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",
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\\(\\[[^\\]]+]\\)",
"/new [a-zA-Z]+\\({[^£]+}\\)/g",
"/<element name=\"[a-z]+\"/gi",
"/<attribute name=\"[a-z]+\"/gi"
2022-07-04 14:51:36 +01:00
],
2023-03-30 19:59:23 +01:00
"ignorePaths": [
"package.json",
"docs/api"
],
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-03-30 19:59:23 +01:00
"flagWords": [
"hte"
]
2022-07-04 14:51:36 +01:00
}