Skip to content

Commit 76a37b6

Browse files
committed
review
1 parent 8cea470 commit 76a37b6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

pkg/config/linters_settings.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@ var defaultLintersSettings = LintersSettings{
8888
IgnoreTests: true,
8989
WatchForScripts: []string{"Han"},
9090
},
91-
Iface: IfaceSettings{
92-
Unused: true,
93-
Identical: true,
94-
Opaque: true,
95-
},
9691
Inamedparam: INamedParamSettings{
9792
SkipSingleParam: false,
9893
},

pkg/golinters/iface/iface.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ package iface
33
import (
44
"slices"
55

6-
"github.com/golangci/golangci-lint/pkg/config"
7-
"github.com/golangci/golangci-lint/pkg/goanalysis"
86
"github.com/uudashr/iface/identical"
97
"github.com/uudashr/iface/opaque"
108
"github.com/uudashr/iface/unused"
119
"golang.org/x/tools/go/analysis"
10+
11+
"github.com/golangci/golangci-lint/pkg/config"
12+
"github.com/golangci/golangci-lint/pkg/goanalysis"
1213
)
1314

1415
var allAnalyzers = []*analysis.Analyzer{

0 commit comments

Comments
 (0)