Files
nomad/.semgrep/api_errorf.yml
2023-08-10 17:27:09 -05:00

15 lines
335 B
YAML

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
rules:
- id: "fmt_errorf_unformatted_use"
patterns:
- pattern: fmt.Errorf("...")
message: "Use of fmt.Errorf without formatting. Please use errors.New"
languages:
- "go"
severity: "WARNING"
paths:
include:
- "./api/*"