1 Star 0 Fork 145

车运华 / Kubernetes_old1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.golangci.yaml 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
run:
timeout: 30m
skip-files:
- "^zz_generated.*"
issues:
max-same-issues: 0
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# exclude ineffassign linter for generated files for conversion
- path: conversion\.go
linters:
- ineffassign
# TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
# with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
- path: (pkg/volume/*|test/*|cmd/kubeadm/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
linters:
- gocritic
linters:
disable-all: true
enable: # please keep this alphabetized
- gocritic
- ineffassign
- logcheck
- staticcheck
- stylecheck
- unused
linters-settings: # please keep this alphabetized
custom:
logcheck:
# Installed there by hack/verify-golangci-lint.sh.
path: _output/local/bin/logcheck.so
description: structured logging checker
original-url: k8s.io/klog/hack/tools
gocritic:
enabled-checks:
- equalFold
- boolExprSimplify
staticcheck:
checks: [
"all",
"-SA1019", # TODO(fix) Using a deprecated function, variable, constant or field
"-SA2002" # TODO(fix) Called testing.T.FailNow or SkipNow in a goroutine, which isn’t allowed
]
stylecheck:
checks: [
"ST1019", # Importing the same package multiple times.
]
Shell
1
https://gitee.com/cheyunhua/Kubernetes_old1.git
git@gitee.com:cheyunhua/Kubernetes_old1.git
cheyunhua
Kubernetes_old1
Kubernetes_old1
master

搜索帮助