Skip to content

Commit 0ef36f4

Browse files
committed
Prepare for #205: use forked repos without aliases
1 parent be0bd9e commit 0ef36f4

File tree

130 files changed

+506
-299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+506
-299
lines changed

Gopkg.lock

Lines changed: 107 additions & 103 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,10 @@
1010
branch = "master"
1111
name = "sourcegraph.com/sourcegraph/go-diff"
1212

13-
[[constraint]]
14-
name = "github.com/kisielk/errcheck"
15-
branch = "master"
16-
source = "github.com/golangci/errcheck"
17-
1813
[[constraint]]
1914
name = "github.com/golangci/govet"
2015
branch = "master"
2116

22-
[[constraint]]
23-
name = "github.com/mibk/dupl"
24-
branch = "master"
25-
source = "github.com/golangci/dupl"
26-
27-
[[constraint]]
28-
name = "mvdan.cc/unparam"
29-
branch = "fix-crash-on-nil-constant"
30-
source = "github.com/golangci/unparam"
31-
3217
[prune]
3318
go-tests = true
3419
unused-packages = true
@@ -79,15 +64,4 @@
7964

8065
[[constraint]]
8166
branch = "master"
82-
name = "golang.org/x/tools"
83-
source = "github.com/golangci/tools"
84-
85-
[[constraint]]
86-
branch = "master"
87-
name = "honnef.co/go/tools"
88-
source = "github.com/golangci/go-tools"
89-
90-
[[constraint]]
91-
branch = "master"
92-
name = "github.com/client9/misspell"
93-
source = "github.com/golangci/misspell"
67+
name = "github.com/golangci/unparam"

pkg/golinters/dupl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"fmt"
66
"go/token"
77

8+
duplAPI "github.com/golangci/dupl"
89
"github.com/golangci/golangci-lint/pkg/lint/linter"
910
"github.com/golangci/golangci-lint/pkg/result"
10-
duplAPI "github.com/mibk/dupl"
1111
)
1212

1313
type Dupl struct{}

pkg/golinters/errcheck.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"fmt"
66

7+
errcheckAPI "github.com/golangci/errcheck/golangci"
78
"github.com/golangci/golangci-lint/pkg/lint/linter"
89
"github.com/golangci/golangci-lint/pkg/result"
9-
errcheckAPI "github.com/kisielk/errcheck/golangci"
1010
)
1111

1212
type Errcheck struct{}

0 commit comments

Comments
 (0)