forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell-ext.json
36 lines (36 loc) · 1.02 KB
/
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": "java",
"name": "Java",
"description": "Java dictionary for cspell.",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "java",
"path": "./dict/java.trie",
"description": "Java dictionary for cspell."
}
],
"patterns": [
{
"name": "java-statement-import",
"description": "Matches the import statement",
"pattern": "/^\\s*import\\s+[\\w.]+/gm"
},
{
"name": "java-member-function",
"description": "Ignore member functions etc, these are checked by the compiler.",
"pattern": "/(\\.\\w+)+(?=\\()/g"
}
],
"languageSettings": [
{
"languageId": "java",
"locale": "*",
"includeRegExpList": [],
"ignoreRegExpList": ["java-statement-import", "java-member-function"],
"patterns": [],
"dictionaries": ["java"],
"dictionaryDefinitions": []
}
]
}