From a5ae4bf92b53630b492631bf78ec8d69e036e069 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Tue, 10 Sep 2024 12:36:42 +0200 Subject: golangci.yml: disable deprecated linters WARN [lintersdb] The linter "maligned" is deprecated (step 2) and deactivated. It should be removed from the list of disabled linters. WARN [lintersdb] The linter "interfacer" is deprecated (step 2) and deactivated. It should be removed from the list of disabled linters. WARN [lintersdb] The linter "scopelint" is deprecated (step 2) and deactivated. It should be removed from the list of disabled linters. --- .golangci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 04551758b..103562e1f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -49,18 +49,15 @@ linters: - gomnd - gomodguard - gosec - - maligned - rowserrcheck - testpackage - typecheck - ineffassign # errcheck would be good to enable, but we need to fix existing warnings first. - errcheck - - interfacer - unparam - nakedret - prealloc - - scopelint - gocritic - wsl -- cgit mrf-deployment