forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell-ext.json
36 lines (36 loc) · 892 Bytes
/
cspell-ext.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
{
"id": "sql",
"version": "0.2",
"name": "sql",
"description": "SQL dictionary for CSpell.",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "sql",
"path": "./sql.txt.gz",
"description": "SQL dictionary for CSpell."
}
],
"patterns": [
{
"name": "sql-hex-number",
"pattern": "/0x[a-f0-9]*/gi"
},
{
"name": "sql-unicode-string-prefix",
"pattern": "/\\bN'/g"
}
],
"dictionaries": [],
"languageSettings": [
{
"languageId": "sql",
"locale": "*",
"patterns": [],
"dictionaries": ["sql"],
"ignoreRegExpList": ["sql-hex-number", "sql-unicode-string-prefix"],
"dictionaryDefinitions": []
}
],
"enableFiletypes": ["sql"]
}