blob: e4fe84b5adc6123618a546582a4c9707f9cb5309 [file] [log] [blame]
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001#Copyright 2018-present Open Networking Foundation
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
15linters-settings:
16 govet:
17 check-shadowing: true
18 settings:
19 printf:
20 funcs:
21 - (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
22 - (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
23 - (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
24 - (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
25 golint:
26 min-confidence: 0
27
28 gocyclo:
Devmalya Paul6f063a62020-02-19 19:19:06 -050029 min-complexity: 17
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070030
31 misspell:
32 locale: US
33
34linters:
Kent Hagermane71b52d2020-02-26 11:13:42 -050035 disable-all: true #TODO: enable default linters
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070036 enable:
Kent Hagermane71b52d2020-02-26 11:13:42 -050037 #- gocritic
38 #- gochecknoglobals
39 #- gochecknoinits
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070040 - gocyclo
Kent Hagermane71b52d2020-02-26 11:13:42 -050041 - gofmt
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070042 - golint
Kent Hagermane71b52d2020-02-26 11:13:42 -050043 - govet
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070044 - ineffassign
45 - misspell
Kent Hagermane71b52d2020-02-26 11:13:42 -050046 #- unparam
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070047
48run:
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070049 modules-download-mode: vendor
50
51issues:
52 exclude-rules:
53 - text: "weak cryptographic primitive"
54 linters:
55 - gosec
56 exclude:
57 - "don't use underscores in Go names; method Adapter_descriptor"
58 - "don't use underscores in Go names; method Device_types"
59 - "don't use underscores in Go names; method Adopt_device"
60 - "don't use underscores in Go names; method Reconcile_device"
61 - "don't use underscores in Go names; method Abandon_device"
62 - "don't use underscores in Go names; method Disable_device"
63 - "don't use underscores in Go names; method Reenable_device"
64 - "don't use underscores in Go names; method Reboot_device"
65 - "don't use underscores in Go names; method Self_test_device"
66 - "don't use underscores in Go names; method Delete_device"
67 - "don't use underscores in Go names; method Get_device_details"
68 - "don't use underscores in Go names; method Update_flows_bulk"
69 - "don't use underscores in Go names; method Update_flows_incrementally"
70 - "don't use underscores in Go names; method Update_pm_config"
71 - "don't use underscores in Go names; method Receive_packet_out"
Devmalya Pauldd23a992019-11-14 07:06:31 +000072 - "don't use underscores in Go names; method Suppress_event"
73 - "don't use underscores in Go names; method Unsuppress_event"
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070074 - "don't use underscores in Go names; method Get_ofp_device_info"
75 - "don't use underscores in Go names; method Get_ofp_port_info"
76 - "don't use underscores in Go names; method Process_inter_adapter_message"
77 - "don't use underscores in Go names; method Download_image"
78 - "don't use underscores in Go names; method Get_image_download_status"
79 - "don't use underscores in Go names; method Cancel_image_download"
80 - "don't use underscores in Go names; method Activate_image_update"
81 - "don't use underscores in Go names; method Revert_image_update"
kesavand39e0aa32020-01-28 20:58:50 -050082 - "don't use underscores in Go names; method Disable_port"
83 - "don't use underscores in Go names; method Enable_port"
Chaitrashree G S1a55b882020-02-04 17:35:35 -050084 - "don't use underscores in Go names; method Child_device_lost"
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070085 exclude-use-default: false