-
Notifications
You must be signed in to change notification settings - Fork 18
/
.cspell.json
135 lines (135 loc) · 2.92 KB
/
.cspell.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"version": "0.2",
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
"language": "en",
"dictionaries": [
"python",
"en_US",
"en-gb",
"companies",
"softwareTerms",
"misc"
],
"words": [
"AYΣTHPO",
"AΘHNAIΩN",
"AΠOΦAΣH",
"BIREYSEL",
"EINAI",
"EKKΛHΣIAΣ",
"EMΠAPΓKO",
"ENROUTE",
"EΠIBAΛEI",
"KAΘOΛIKO",
"Kilic",
"Lozina",
"Luka",
"MEΓAPIKO",
"Snyk",
"TACIR",
"WABA",
"aabe",
"conint",
"conlist",
"defaultplaceholders",
"dtmf",
"formdata",
"ibsso",
"ijkl",
"infobip",
"intermediatereport",
"msisdn",
"preserverecipients",
"pydantic",
"replyto",
"setuptools",
"somexternal",
"templateid",
"testenv",
"trackclicks",
"trackopens",
"webrtc",
"werkzeug",
"Αθηναίων",
"ΓNΩΣTH",
"ΓYPΩ",
"ΔHMOY",
"Εκκλησίας",
"Μεγαρικό",
"ΠIΘANON",
"ΨHΦIΣMA",
"απόφαση",
"αυστηρό",
"γνωστή",
"δήμου",
"είναι",
"εμπάργκο",
"επιβάλει",
"καθολικό",
"ψήφισμα"
],
"flagWords": [],
"patterns": [
{
"name": "Markdown links",
"pattern": "\\((.*)\\)",
"description": ""
},
{
"name": "Markdown code blocks",
"pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
"description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
},
{
"name": "Inline code blocks",
"pattern": "\\`([^\\`\\r\\n]+?)\\`",
"description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
},
{
"name": "Link contents",
"pattern": "\\<a(.*)\\>",
"description": ""
},
{
"name": "Snippet references",
"pattern": "-- snippet:(.*)",
"description": ""
},
{
"name": "Snippet references 2",
"pattern": "\\<\\[sample:(.*)",
"description": "another kind of snippet reference"
},
{
"name": "Multi-line code blocks",
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm"
},
{
"name": "HTML Tags",
"pattern": "<[^>]*>",
"description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string"
}
],
"ignoreRegExpList": [
"Markdown links",
"Markdown code blocks",
"Inline code blocks",
"Link contents",
"Snippet references",
"Snippet references 2",
"Multi-line code blocks",
"HTML Tags"
],
"ignorePaths": [
".cspell.json",
"package.json",
"package-lock.json",
"yarn.lock",
"tsconfig.json",
"node_modules/**",
".eslintrc.js",
".vscode/settings.json",
".gitignore",
".github/workflows"
]
}