* Add the new MaxMind license key format * feedback * reorg rules --------- Co-authored-by: Dustin Decker <[email protected]>
11 lines
284 B
YAML
11 lines
284 B
YAML
rules:
|
|
- id: no-printing-in-detectors
|
|
patterns:
|
|
- pattern-either:
|
|
- pattern: fmt.Println(...)
|
|
- pattern: fmt.Printf(...)
|
|
- pattern: import("log")
|
|
message: "Do not print or log inside of detectors."
|
|
languages: [go]
|
|
severity: ERROR
|