From f4987580d2f42f2bf4afcc497d6faa84840e9a76 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Thu, 22 Aug 2024 11:33:59 +0200 Subject: [PATCH] [no-relnote] Ignore integer overflow in golangci-lint Signed-off-by: Evan Lezar --- .golangci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index d9cab6c7..b4c2f1c2 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -23,6 +23,8 @@ issues: exclude: # The legacy hook relies on spec.Hooks.Prestart, which is deprecated as of the v1.2.0 OCI runtime spec. - "SA1019:(.+).Prestart is deprecated(.+)" + # TODO: We should address each of the following integer overflows. + - "G115: integer overflow conversion(.+)" exclude-rules: # Exclude the gocritic dupSubExpr issue for cgo files. - path: internal/dxcore/dxcore.go