Merge pull request #661 from elezar/fix-golangci-lint

[no-relnote] Ignore integer overflow in golangci-lint
This commit is contained in:
Evan Lezar 2024-08-22 11:43:17 +02:00 committed by GitHub
commit e3936fd623
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,8 @@ issues:
exclude: exclude:
# The legacy hook relies on spec.Hooks.Prestart, which is deprecated as of the v1.2.0 OCI runtime spec. # The legacy hook relies on spec.Hooks.Prestart, which is deprecated as of the v1.2.0 OCI runtime spec.
- "SA1019:(.+).Prestart is deprecated(.+)" - "SA1019:(.+).Prestart is deprecated(.+)"
# TODO: We should address each of the following integer overflows.
- "G115: integer overflow conversion(.+)"
exclude-rules: exclude-rules:
# Exclude the gocritic dupSubExpr issue for cgo files. # Exclude the gocritic dupSubExpr issue for cgo files.
- path: internal/dxcore/dxcore.go - path: internal/dxcore/dxcore.go