mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
20 lines
433 B
YAML
20 lines
433 B
YAML
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
rules:
|
|
- id: "time-after-leak"
|
|
patterns:
|
|
- pattern: |
|
|
select {
|
|
case <- time.After(...): ...
|
|
}
|
|
message: "Potential leak of time.Timer, consider using NewSafeTimer instead"
|
|
languages:
|
|
- "go"
|
|
severity: "WARNING"
|
|
paths:
|
|
exclude:
|
|
- "testutil/*"
|
|
- "*testing.go"
|
|
- "*_test.go"
|