diff options
author | Yolan Romailler <[email protected]> | 2024-01-25 16:24:58 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-25 15:24:58 +0000 |
commit | 2fe69a828f9fcacc0160a576839d4b67c5730031 (patch) | |
tree | fa8b74d9a53d9eab3011f50d710481647b1f0fdd /caddyconfig/caddyfile/adapter.go | |
parent | c369df5c375685f35f5b9f47f5790124c28258c9 (diff) | |
download | caddy-2fe69a828f9fcacc0160a576839d4b67c5730031.tar.gz caddy-2fe69a828f9fcacc0160a576839d4b67c5730031.zip |
chore: enabling a few more linters (#5961)
Co-authored-by: Francis Lavoie <[email protected]>
Diffstat (limited to 'caddyconfig/caddyfile/adapter.go')
-rw-r--r-- | caddyconfig/caddyfile/adapter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caddyconfig/caddyfile/adapter.go b/caddyconfig/caddyfile/adapter.go index edd825b88..da4f98337 100644 --- a/caddyconfig/caddyfile/adapter.go +++ b/caddyconfig/caddyfile/adapter.go @@ -52,7 +52,7 @@ func (a Adapter) Adapt(body []byte, options map[string]any) ([]byte, []caddyconf return nil, warnings, err } - // lint check: see if input was properly formatted; sometimes messy files files parse + // lint check: see if input was properly formatted; sometimes messy files parse // successfully but result in logical errors (the Caddyfile is a bad format, I'm sorry) if warning, different := FormattingDifference(filename, body); different { warnings = append(warnings, warning) |