2023-04-10 11:14:21 +01:00
|
|
|
# Copyright 2013-2023 The Cobra Authors
|
2022-11-07 10:20:30 +00:00
|
|
|
#
|
|
|
|
# Licensed 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.
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
run:
|
|
|
|
deadline: 5m
|
|
|
|
|
|
|
|
linters:
|
|
|
|
disable-all: true
|
|
|
|
enable:
|
|
|
|
#- bodyclose
|
2023-11-08 11:50:41 +00:00
|
|
|
# - deadcode ! deprecated since v1.49.0; replaced by 'unused'
|
2021-12-07 12:31:39 +00:00
|
|
|
#- depguard
|
|
|
|
#- dogsled
|
|
|
|
#- dupl
|
|
|
|
- errcheck
|
|
|
|
#- exhaustive
|
|
|
|
#- funlen
|
|
|
|
#- gochecknoinits
|
|
|
|
- goconst
|
2024-06-17 09:13:40 +01:00
|
|
|
- gocritic
|
2021-12-07 12:31:39 +00:00
|
|
|
#- gocyclo
|
2024-06-17 09:13:40 +01:00
|
|
|
- gofmt
|
2021-12-07 12:31:39 +00:00
|
|
|
- goimports
|
|
|
|
#- gomnd
|
|
|
|
#- goprintffuncname
|
2024-06-17 09:13:40 +01:00
|
|
|
- gosec
|
|
|
|
- gosimple
|
2021-12-07 12:31:39 +00:00
|
|
|
- govet
|
|
|
|
- ineffassign
|
|
|
|
#- lll
|
2024-06-17 09:13:40 +01:00
|
|
|
- misspell
|
2021-12-07 12:31:39 +00:00
|
|
|
#- nakedret
|
|
|
|
#- noctx
|
2024-06-17 09:13:40 +01:00
|
|
|
- nolintlint
|
2021-12-07 12:31:39 +00:00
|
|
|
#- rowserrcheck
|
|
|
|
#- scopelint
|
2024-06-17 09:13:40 +01:00
|
|
|
- staticcheck
|
2023-11-08 11:50:41 +00:00
|
|
|
#- structcheck ! deprecated since v1.49.0; replaced by 'unused'
|
2024-06-17 09:13:40 +01:00
|
|
|
- stylecheck
|
2021-12-07 12:31:39 +00:00
|
|
|
#- typecheck
|
|
|
|
- unconvert
|
|
|
|
#- unparam
|
2023-11-08 11:50:41 +00:00
|
|
|
- unused
|
|
|
|
# - varcheck ! deprecated since v1.49.0; replaced by 'unused'
|
2021-12-07 12:31:39 +00:00
|
|
|
#- whitespace
|
|
|
|
fast: false
|