github.com/verrazzano/verrazzano@v1.7.0/.golangci.yaml (about) 1 # Copyright (c) 2020, 2023, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 linters-settings: 5 staticcheck: 6 go: "1.19" 7 checks: ["SA1012"] 8 stylecheck: 9 go: "1.19" 10 checks: ["ST1019"] 11 12 13 linters: 14 enable: 15 - govet 16 - ineffassign 17 - gofmt 18 - gosimple 19 - gosec 20 - revive 21 - unused 22 - staticcheck 23 - stylecheck 24 - misspell 25 disable-all: true 26 fast: true 27 28 issues: 29 exclude: 30 - stutter