Skip to content

Commit 8db6715

Browse files
committed
fix: options
1 parent a44dd40 commit 8db6715

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/golinters/ginkgolinter/ginkgolinter.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ func New(settings *config.GinkgoLinterSettings) *goanalysis.Linter {
2323
SuppressTypeCompare: types.Boolean(settings.SuppressTypeCompareWarning),
2424
AllowHaveLen0: types.Boolean(settings.AllowHaveLenZero),
2525
ForceExpectTo: types.Boolean(settings.ForceExpectTo),
26-
ValidateAsyncIntervals: types.Boolean(settings.ForbidSpecPollution),
27-
ForbidSpecPollution: types.Boolean(settings.ValidateAsyncIntervals),
26+
ValidateAsyncIntervals: types.Boolean(settings.ValidateAsyncIntervals),
27+
ForbidSpecPollution: types.Boolean(settings.ForbidSpecPollution),
2828
}
2929
}
3030

0 commit comments

Comments
 (0)