From 053480d314e80fd5e79166ea5318cf63bf91b3f3 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Tue, 4 Mar 2025 16:32:46 -0500 Subject: [PATCH] ci(golangci-lint): use bugs and performance presets This disables the `asasalint` and `recvcheck` checks due to failing. There are open issues to resolve them, individually. Signed-off-by: Chris Gianelloni --- .golangci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 1982a98b..03aeef86 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -12,12 +12,12 @@ linters: - staticcheck - unused # Defaults above ours below - - bodyclose - - fatcontext - - gosec - - noctx - - perfsprint - - prealloc + disable: + - asasalint + - recvcheck + presets: + - bugs + - performance #linters-settings: # errcheck: # check-type-assertions: true