-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnogo.json
33 lines (33 loc) · 978 Bytes
/
nogo.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
{
"composites": {
"exclude_files": {
"external/org_golang_google_protobuf/internal/impl/.*": "allow unkeyed fields on offending third-party code"
}
},
"copylocks": {
"exclude_files": {
"external/org_golang_google_protobuf/internal/impl/.*": "disable copylocks check on offending third-party code"
}
},
"nilness": {
"exclude_files": {
"external/.*": "enforce no nilness only on first-party code"
}
},
"shadow": {
"exclude_files": {
".*": "disable the shadowing check on all code, because it's fine"
}
},
"unreachable": {
"exclude_files": {
"external/.*": "enforce no unreachable paths only on first-party code"
}
},
"unsafeptr": {
"exclude_files": {
"external/org_golang_x_sys/unix/.*": "disable unsafe pointer check on offending third-party code",
"external/com_github_mailru_easyjson/jlexer/.*": "disable unsafe pointer check on offending third-party code"
}
}
}