mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 11:31:05 +00:00
As we have an issue with a golang version for `run-cri-containerd`, it is required to bump the language. Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
35 lines
478 B
YAML
35 lines
478 B
YAML
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
run:
|
|
concurrency: 4
|
|
deadline: 600s
|
|
|
|
issues:
|
|
exclude-dirs:
|
|
- vendor
|
|
exclude-files:
|
|
- ".*\\.pb\\.go$"
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- gocyclo
|
|
- gofmt
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- staticcheck
|
|
- typecheck
|
|
- unused
|
|
|
|
linters-settings:
|
|
gocyclo:
|
|
min_complexity: 15
|
|
unused:
|
|
check-exported: true
|
|
govet:
|
|
enable:
|