Disable some static analysis checks for coverage builds (#6105)

* Disable some static analysis checks for coverage builds
* Merge branch 'master' into fix-coverage-builds
* disable lostcancel for third_party code
* Merge branch 'fix-coverage-builds' of github.com:prysmaticlabs/prysm into fix-coverage-builds
* Merge refs/heads/master into fix-coverage-builds
* A few lostcancel fixes
* Merge branch 'fix-coverage-builds' of github.com:prysmaticlabs/prysm into fix-coverage-builds
* Merge refs/heads/master into fix-coverage-builds
This commit is contained in:
Preston Van Loon
2020-06-03 12:22:48 -07:00
committed by GitHub
parent 4e96cbeae7
commit d2337d0ec1
10 changed files with 35 additions and 13 deletions

View File

@@ -13,7 +13,8 @@
},
"lostcancel": {
"exclude_files": {
"validator/client/runner.go": "No need to cancel right when goroutines begin"
"validator/client/runner.go": "No need to cancel right when goroutines begin",
"external/.*": "Third party code"
}
},
"nilness": {
@@ -41,12 +42,12 @@
"composites": {
"exclude_files": {
"external/.*": "Third party code"
}
}
},
"cgocall": {
"exclude_files": {
"external/.*": "Third party code"
}
}
},
"assign": {
"exclude_files": {