0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00
imageproxy/.golangci.yml

26 lines
727 B
YAML
Raw Normal View History

2020-09-10 01:28:59 -05:00
linters:
enable:
2020-09-10 02:30:25 -05:00
- dogsled
- dupl
2022-01-22 13:29:37 -05:00
- errorlint
2020-09-10 01:28:59 -05:00
- goimports
2020-09-10 02:30:25 -05:00
- gosec
2020-09-10 01:28:59 -05:00
- misspell
2020-09-10 02:30:25 -05:00
- nakedret
- stylecheck
- unconvert
- unparam
2020-09-10 01:28:59 -05:00
- whitespace
2020-09-10 02:30:25 -05:00
issues:
exclude-rules:
# Some cache implementations use md5 hashes for cached filenames. There is
2020-09-10 02:30:25 -05:00
# a slight risk of cache poisoning if an attacker could construct a URL
# with the same hash, but the URL would also need to be allowed by the
# proxy's security settings (host allowlist, URL signature, etc). Changing
# these to a more secure hash algorithm would result in 100% cache misses
# when users upgrade. For now, just leave these alone.
2020-09-10 02:30:25 -05:00
- path: internal/.*cache
linters: gosec
text: G(401|501)