11 lines
282 B
YAML
11 lines
282 B
YAML
|
# Copyright (c) HashiCorp, Inc.
|
||
|
# SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
rules:
|
||
|
- id: time-parse-duration
|
||
|
patterns:
|
||
|
- pattern: time.ParseDuration
|
||
|
message: "Usage of time.ParseDuration. Use parseutil.ParseDurationSeconds, instead!"
|
||
|
languages: [go]
|
||
|
severity: ERROR
|