summaryrefslogtreecommitdiff
path: root/funcs.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2021-04-14 14:22:06 -0400
committerGitHub <noreply@github.com>2021-04-14 18:22:06 +0000
commitea9a8a6d582c97037d45e57273885d8c4a3ef287 (patch)
tree6f1d8b222978a38b4375ed521fc70cd6a2237c70 /funcs.go
parent8eeedae9d08b94e71444f812481a1650809809dd (diff)
Stop using globals for func namespaces (#1127)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'funcs.go')
-rw-r--r--funcs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs.go b/funcs.go
index 97c1cc18..53c35568 100644
--- a/funcs.go
+++ b/funcs.go
@@ -5,7 +5,7 @@ import (
"text/template"
"github.com/hairyhenderson/gomplate/v3/data"
- "github.com/hairyhenderson/gomplate/v3/funcs"
+ "github.com/hairyhenderson/gomplate/v3/funcs" //nolint:staticcheck
"github.com/hairyhenderson/gomplate/v3/internal/config"
)