mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-27 15:54:50 +00:00
23 lines
485 B
YAML
23 lines
485 B
YAML
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
rules:
|
|
- id: hc-return-nil
|
|
patterns:
|
|
- pattern-either:
|
|
- pattern: |
|
|
if $X == nil {
|
|
return $X
|
|
}
|
|
- pattern: |
|
|
if $X != nil {
|
|
return ...
|
|
}
|
|
return $X
|
|
message: return nil instead of nil value
|
|
languages:
|
|
- go
|
|
severity: ERROR
|
|
metadata:
|
|
license: MIT
|