Joey Armstrong | 11f5a57 | 2024-01-12 19:11:32 -0500 | [diff] [blame] | 1 | #Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 2 | # |
| 3 | #Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | #you may not use this file except in compliance with the License. |
| 5 | #You may obtain a copy of the License at |
| 6 | # |
| 7 | #http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | #Unless required by applicable law or agreed to in writing, software |
| 10 | #distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | #See the License for the specific language governing permissions and |
| 13 | #limitations under the License. |
| 14 | |
| 15 | linters-settings: |
| 16 | govet: |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 17 | settings: |
| 18 | printf: |
| 19 | funcs: |
| 20 | - (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof |
| 21 | - (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf |
| 22 | - (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf |
| 23 | - (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf |
| 24 | golint: |
| 25 | min-confidence: 0 |
| 26 | |
| 27 | gocyclo: |
Devmalya Paul | 6f063a6 | 2020-02-19 19:19:06 -0500 | [diff] [blame] | 28 | min-complexity: 17 |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 29 | |
| 30 | misspell: |
| 31 | locale: US |
| 32 | |
| 33 | linters: |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 34 | enable: |
Kent Hagerman | e71b52d | 2020-02-26 11:13:42 -0500 | [diff] [blame] | 35 | #- gocritic |
| 36 | #- gochecknoglobals |
| 37 | #- gochecknoinits |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 38 | - gocyclo |
Kent Hagerman | e71b52d | 2020-02-26 11:13:42 -0500 | [diff] [blame] | 39 | - gofmt |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 40 | - golint |
Kent Hagerman | e71b52d | 2020-02-26 11:13:42 -0500 | [diff] [blame] | 41 | - govet |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 42 | - ineffassign |
| 43 | - misspell |
Andrey Pozolotin | ff797a9 | 2020-08-14 01:54:57 +0200 | [diff] [blame] | 44 | - gosec |
Kent Hagerman | e71b52d | 2020-02-26 11:13:42 -0500 | [diff] [blame] | 45 | #- unparam |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 46 | |
| 47 | run: |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 48 | modules-download-mode: vendor |
| 49 | |
| 50 | issues: |
| 51 | exclude-rules: |
| 52 | - text: "weak cryptographic primitive" |
| 53 | linters: |
| 54 | - gosec |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 55 | exclude-use-default: false |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 56 | exclude: |
| 57 | - "SA1019: voltha.ImageDownloads is deprecated" |
| 58 | - "SA1019: voltha.ImageDownload is deprecated" |