-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.json
53 lines (53 loc) · 1.3 KB
/
config.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
{
"types": [
{
"name": "所有文件类型",
"suffix": []
},
{
"name": "java文件",
"suffix": ".java",
"comment": ["//", "/*multi*/", "/**multi*/"]
},
{
"name": "xml文件",
"suffix": ".xml",
"comment": ["<!--single-->"]
},
{
"name": "python文件",
"suffix": ".py",
"comment": ["#", "'''multi'''"]
},
{
"name": "html文件",
"suffix": ".html",
"comment": ["//", "<!--single-->", "/*multi*/", "/**multi*/"]
},
{
"name": "lua文件",
"suffix": ".lua",
"comment": ["--"]
},
{
"name": "C#文件",
"suffix": ".cs",
"comment": ["//","/*multi*/"]
},
{
"name": "PHP文件",
"suffix": ".php",
"comment": ["//", "/*multi*/", "/**multi*/"]
},
{
"name": "Javascript文件",
"suffix": ".js",
"comment": ["//", "/*multi*/", "/**multi*/"]
},
{
"name": "CSS文件",
"suffix": ".css",
"comment": ["/*multi*/", "/**multi*/"]
}
]
}