diff --git a/.golangci.yml b/.golangci.yml index 8dcd052..c4e1a9b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -106,6 +106,11 @@ output: # All available settings of specific linters. linters-settings: + gosec: + excludes: + # Flags for potentially-unsafe casting of ints, but generates a lot of false positives. + - 'G115' + lll: line-length: 132 @@ -135,6 +140,7 @@ linters: - execinquery - exhaustive - exhaustruct + - exportloopref - forbidigo - forcetypeassert - funlen