forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell-ext.json
37 lines (37 loc) · 1.16 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
37
{
"id": "csharp",
"name": "csharp",
"version": "0.2",
"readonly": true,
"description": "C# dictionary for cspell.",
"dictionaryDefinitions": [
{
"name": "csharp",
"path": "./csharp.txt.gz",
"description": "C# dictionary for cspell."
}
],
"dictionaries": [],
"languageSettings": [
{
"languageId": "csharp",
"description": "These are the language settings for C#",
"includeRegExpList": [],
"ignoreRegExpList": [],
"patterns": [
{
"name": "string",
"pattern": "/(?:@\"[\\s\\S]*?(?<![^\"]\"(\"\")*)\"(?!\"))|(?:(?<![@\\\\])\".*?(?<![^\\\\]\\\\(\\\\\\\\)*)\")/g",
"description": "C# String Literal"
},
{
"name": "string.verbatim",
"pattern": "/@\"[\\s\\S]*?(?<![^\"]\"(\"\")*)\"(?!\")/g",
"description": "C# Verbatim String"
}
],
"dictionaries": ["csharp", "dotnet", "npm"],
"dictionaryDefinitions": []
}
]
}