From 90f03c423337ed36641d8ce74091774b47a63b4a Mon Sep 17 00:00:00 2001 From: kimueibin Date: Tue, 3 Sep 2024 22:17:12 +0900 Subject: [PATCH] feat : exclude G115 in golang-lint --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 53c04e29..098e5248 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -13,6 +13,9 @@ output: # This file contains only configs which differ from defaults. # All possible options can be found here https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml linters-settings: + gosec: + excludes: + - G115 cyclop: # The maximal code complexity to report. # Default: 10