blob: d42a82136e169c3b965fe72f87c8668332f7e622 [file] [log] [blame]
#Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
#
#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.
version: "2"
linters:
enable:
#- gocritic
#- gochecknoglobals
#- gochecknoinits
- gocyclo
- govet
- ineffassign
- misspell
- gosec
- errcheck
- staticcheck
- unused
- unparam
exclusions:
rules:
- path: ".*_test.go"
linters:
- govet
- fieldalignment
- staticcheck
- text: "weak cryptographic primitive"
linters:
- gosec
- text: "Error return value of `rxCallbackEntry.cbFunction` is not checked"
linters:
- gocritic
- text: "Error return value of `oo.sendNextRequest` is not checked"
linters:
- gocritic
- text: "Error return value of `oo.pDevOmciCC.send` is not checked"
linters:
- gocritic
- text: "Error return value of `onuDeviceEntry.mibDbClass` is not checked"
linters:
- gocritic
- text: "SA1019: voltha.ImageDownload is deprecated"
linters:
- staticcheck
- text: 'G115: integer overflow conversion'
linters:
- gosec
linters-settings:
govet:
settings:
printf:
funcs:
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
enable:
- shadow
- fieldalignment
golint:
min-confidence: 0
gocyclo:
min-complexity: 20
misspell:
locale: US
ignore-words:
- cancelled
formatters:
enable:
- gofmt
- goimports
# run:
# modules-download-mode: vendor
issues:
modules-download-mode: vendor
# exclude-rules:
# - text: "weak cryptographic primitive"
# linters:
# - gosec
# - path: ".*_test.go"
# linters:
# - govet
# - fieldalignment
# exclude:
# - "Error return value of `rxCallbackEntry.cbFunction` is not checked"
# - "Error return value of `oo.sendNextRequest` is not checked"
# - "Error return value of `oo.pDevOmciCC.send` is not checked"
# - "Error return value of `onuDeviceEntry.mibDbClass` is not checked"
# - "SA1019: voltha.ImageDownload is deprecated"
# - 'G115: integer overflow conversion'
# exclude-use-default: false