-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
77 lines (76 loc) · 1.65 KB
/
config.go
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
package main
var (
ignoredFolders = map[string]bool{
".git": true,
"node_modules": true,
}
allowedExtensions = map[string]bool{
".asm": true,
".asp": true,
".aspx": true,
".awk": true,
".bash": true,
".bat": true,
".c": true,
".c++": true,
".cgi": true,
".class": true,
".cpp": true,
".cs": true,
".css": true,
".csv": true,
".docx": true,
".dtl": true,
".erb": true,
".factor": true,
".go": true,
".h": true,
".hpp": true,
".hs": true,
".hss": true,
".htm": true,
".html": true,
".hxx": true,
".ini": true,
".java": true,
".ko": true,
".js": true,
".jsp": true,
".jspx": true,
".less": true,
".markdown": true,
".md": true,
".mk": true,
".ml": true,
".nim": true,
".odt": true,
".php": true,
".php4": true,
".php5": true,
".pl": true,
".pptx": true,
".properties": true,
".py": true,
".rb": true,
".rc": true,
".rhtml": true,
".rss": true,
".rtf": true,
".sass": true,
".scss": true,
".sh": true,
".shtml": true,
".sql": true,
".svg": true,
".swift": true,
".tex": true,
".txt": true,
".vb": true,
".xhtml": true,
".xlsx": true,
".xml": true,
".y": true,
".yaws": true,
".yxx": true,
}
)