mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-12 17:30:19 +00:00
57a4fcbaa3
Bumps [github.com/hashicorp/vault/api](https://github.com/hashicorp/vault) from 1.9.1 to 1.9.2. - [Release notes](https://github.com/hashicorp/vault/releases) - [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/vault/compare/v1.9.1...v1.9.2) --- updated-dependencies: - dependency-name: github.com/hashicorp/vault/api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
54 lines
991 B
YAML
54 lines
991 B
YAML
# https://github.com/golangci/golangci-lint
|
|
|
|
run:
|
|
skip-files:
|
|
- doc_test.go
|
|
modules-download-mode: readonly
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- gochecknoglobals
|
|
- goconst
|
|
- lll
|
|
- maligned
|
|
- nakedret
|
|
- scopelint
|
|
- unparam
|
|
- funlen # added in 1.18 (requires go-jose changes before it can be enabled)
|
|
|
|
linters-settings:
|
|
gocyclo:
|
|
min-complexity: 35
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- text: "don't use ALL_CAPS in Go names"
|
|
linters:
|
|
- golint
|
|
- text: "hardcoded credentials"
|
|
linters:
|
|
- gosec
|
|
- text: "weak cryptographic primitive"
|
|
linters:
|
|
- gosec
|
|
- path: json/
|
|
linters:
|
|
- dupl
|
|
- errcheck
|
|
- gocritic
|
|
- gocyclo
|
|
- golint
|
|
- govet
|
|
- ineffassign
|
|
- staticcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- unused
|
|
- path: _test\.go
|
|
linters:
|
|
- scopelint
|
|
- path: jwk.go
|
|
linters:
|
|
- gocyclo
|