From b553f6ac6b1e8d3febed99d8ffabbbecc7c94fae Mon Sep 17 00:00:00 2001 From: Istio Automation Date: Wed, 29 Jan 2020 19:08:28 -0800 Subject: [PATCH] Automator: update common-files@master in istio/istio@master (#20379) --- LICENSE | 2 +- Makefile | 2 +- common/.commonfiles.sha | 2 +- common/config/.golangci.yml | 38 ++++++++++++++++++++----------------- 4 files changed, 24 insertions(+), 20 deletions(-) diff --git a/LICENSE b/LICENSE index 139182e271eb..56e48aa37f63 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2019 Istio Authors + Copyright 2016-2020 Istio Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index 23b3532b34b2..d0f5559c992a 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ export TARGET_OUT = /work/out/$(TARGET_OS)_$(TARGET_ARCH) export TARGET_OUT_LINUX = /work/out/linux_amd64 CONTAINER_CLI ?= docker DOCKER_SOCKET_MOUNT ?= -v /var/run/docker.sock:/var/run/docker.sock -IMG ?= gcr.io/istio-testing/build-tools:master-2020-01-18T00-45-13 +IMG ?= gcr.io/istio-testing/build-tools:master-2020-01-29T17-05-27 UID = $(shell id -u) GID = `grep docker /etc/group | cut -f3 -d:` PWD = $(shell pwd) diff --git a/common/.commonfiles.sha b/common/.commonfiles.sha index b162f1e6c176..526643e93fa3 100644 --- a/common/.commonfiles.sha +++ b/common/.commonfiles.sha @@ -1 +1 @@ -40e8e32e023eaef4e0c2d170112b99d3db22cdf2 +3626b6a35a2333ee17c26a9897698fcf70fe4761 diff --git a/common/config/.golangci.yml b/common/config/.golangci.yml index 033701722a1e..b5ef918c58bc 100644 --- a/common/config/.golangci.yml +++ b/common/config/.golangci.yml @@ -30,23 +30,27 @@ run: - ".*\\.gen\\.go" linters: - enable-all: true - disable: - - bodyclose - - depguard - - dogsled - - dupl - - funlen - - gochecknoglobals - - gochecknoinits - - goconst - - gocyclo - - godox - - gosec - - nakedret - - prealloc - - scopelint - - whitespace + disable-all: true + enable: + - deadcode + - errcheck + - gocritic + - gofmt + - goimports + - golint + - gosimple + - govet + - ineffassign + - interfacer + - lll + - misspell + - staticcheck + - structcheck + - stylecheck + - typecheck + - unconvert + - unparam + - varcheck fast: false linters-settings: