forked from prysmaticlabs/prysm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nogo_config.json
53 lines (53 loc) · 1.04 KB
/
nogo_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
{
"unsafeptr": {
"exclude_files": {
"external/*": "Unsafe third party code"
}
},
"unreachable": {
"exclude_files": {
"shared/messagehandler/messagehandler_test.go": "Necessary panic before return for test",
"external/*": "Unreachable third party code"
}
},
"lostcancel": {
"exclude_files": {
"validator/client/runner.go": "No need to cancel right when goroutines begin"
}
},
"nilness": {
"exclude_files": {
"external/*": "Third party code"
}
},
"stdmethods": {
"exclude_files": {
"external/*": "Third party code"
}
},
"copylocks": {
"exclude_files": {
"external/*": "Third party code"
}
},
"composites": {
"exclude_files": {
"external/*": "Third party code"
}
},
"cgocall": {
"exclude_files": {
"external/*": "Third party code"
}
},
"assign": {
"exclude_files": {
"external/*": "Third party code"
}
},
"structtag": {
"exclude_files": {
"external/*": "Third party code"
}
}
}