aboutsummaryrefslogtreecommitdiff
path: root/lib/ints
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2020-06-06 05:25:23 +0700
committerShulhan <m.shulhan@gmail.com>2020-06-06 05:25:42 +0700
commitb1133f25df3ec38b503e1ea6129ea6b3397968bb (patch)
tree53a2c6755c6a2e0d9ed13b84603e5b8bcd2e3ee0 /lib/ints
parent8661178b08ce640d7c24aec8465802e4d5160e2a (diff)
downloadpakakeh.go-b1133f25df3ec38b503e1ea6129ea6b3397968bb.tar.xz
all: use default linter options
Diffstat (limited to 'lib/ints')
-rw-r--r--lib/ints/ints_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ints/ints_test.go b/lib/ints/ints_test.go
index aba09913..65ae6fa7 100644
--- a/lib/ints/ints_test.go
+++ b/lib/ints/ints_test.go
@@ -12,7 +12,6 @@ import (
"github.com/shuLhan/share/lib/test"
)
-//nolint:gochecknoglobals
var (
d = [][]int{
{},
@@ -259,7 +258,6 @@ func TestSortByIndex(t *testing.T) {
}
}
-//nolint:gochecknoglobals,dupl
var intsInSorts = [][]int{
{9, 8, 7, 6, 5, 4, 3},
{9, 8, 7, 6, 5, 4, 3, 2, 1, 0},
@@ -280,7 +278,6 @@ var intsInSorts = [][]int{
62},
}
-//nolint:gochecknoglobals,dupl
var intsExpSorts = [][]int{
{3, 4, 5, 6, 7, 8, 9},
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
@@ -301,7 +298,6 @@ var intsExpSorts = [][]int{
79},
}
-//nolint:gochecknoglobals,dupl
var intsExpSortsDesc = [][]int{
{9, 8, 7, 6, 5, 4, 3},
{9, 8, 7, 6, 5, 4, 3, 2, 1, 0},