Disable false positive gas warning

This commit is contained in:
Cosmin Cojocar 2018-04-09 12:25:00 +02:00
Родитель 03f7e1f5d6
Коммит 66c303559c
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -30,7 +30,7 @@ func buildHTTPClient() *http.Client {
}
func loadBasicAuth(authFile string) (*basicAuth, error) {
file, err := ioutil.ReadFile(authFile)
file, err := ioutil.ReadFile(authFile) // #nosec
if err != nil {
return nil, fmt.Errorf(`Failed to read the basic authentication
credentials from the file: %v`, err)

Просмотреть файл

@ -50,7 +50,7 @@ func buildHTTPClient() *http.Client {
}
func loadBasicAuth(authFile string) (*BasicAuth, error) {
file, err := ioutil.ReadFile(authFile)
file, err := ioutil.ReadFile(authFile) // #nosec
if err != nil {
return nil, fmt.Errorf(`Failed to read the basic authentication
credentials from the file: %v`, err)

Просмотреть файл

@ -55,7 +55,7 @@ func buildHTTPClient() *http.Client {
}
func loadBasicAuth(authFile string) (*BasicAuth, error) {
file, err := ioutil.ReadFile(authFile)
file, err := ioutil.ReadFile(authFile) // #nosec
if err != nil {
return nil, fmt.Errorf(`Failed to read the basic authentication
credentials from the file: %v`, err)