blob: fc6e824446a00eb10c3f8f65e56fedc6c0a77725 [file] [log] [blame]
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
rules:
- id: fmt.Printf
languages: [go]
message: fmt.Printf/Println is forbidden outside of cmd and test files
patterns:
- pattern-either:
- pattern: fmt.Printf
- pattern: fmt.Println
severity: ERROR
paths:
exclude:
- "*_test.go"
- "cmd/*.go"
- "cmd/**/*.go"
- sdk/database/dbplugin/server.go # effectively a cmd
- sdk/database/dbplugin/v5/plugin_server.go # effectively a cmd