blob: 84eb62bd1eeaecdeebcfad8e4f935bb414ec6c6b [file] [log] [blame]
# Licensed to Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Apache Software Foundation (ASF) licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
GOLANGCI_VERSION := v1.39.0
LINT_OPTS ?= --timeout 1m0s
##@ Code quality targets
LINTER := $(tool_bin)/golangci-lint
$(LINTER):
@wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(root_dir)/bin $(GOLANGCI_VERSION)
.PHONY: lint
lint: $(LINTER) ## Run all the linters
$(LINTER) --verbose run $(LINT_OPTS) --config $(root_dir)/golangci.yml