File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- # gencon [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/ari1021 /gencon.svg )] ( https://pkg.go.dev/github.com/ari1021 /gencon )
1
+ # gencon [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/arkuchy /gencon.svg )] ( https://pkg.go.dev/github.com/arkuchy /gencon )
2
2
3
3
` gencon ` is an analyzer which reports unnecessary type constraints ` any ` .
4
4
@@ -33,13 +33,13 @@ func invoke() { // OK
33
33
34
34
If the function isn't called from anywhere, ` gencon ` reports without hint.
35
35
36
- We can see example of ` gencon ` command report [ here] ( https://github.com/ari1021 /gencon/blob/main/testdata/src/a/a.go ) .
36
+ We can see example of ` gencon ` command report [ here] ( https://github.com/arkuchy /gencon/blob/main/testdata/src/a/a.go ) .
37
37
38
38
39
39
### install
40
40
41
41
``` sh
42
- $ go install github.com/ari1021 /gencon/cmd/gencon@latest
42
+ $ go install github.com/arkuchy /gencon/cmd/gencon@latest
43
43
```
44
44
45
45
### usage
@@ -96,7 +96,7 @@ func invoke() { // OK
96
96
### install
97
97
98
98
``` sh
99
- $ go install github.com/ari1021 /gencon/cmd/fixgencon@latest
99
+ $ go install github.com/arkuchy /gencon/cmd/fixgencon@latest
100
100
```
101
101
102
102
### usage
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package main
3
3
import (
4
4
"os"
5
5
6
- "github.com/ari1021 /gencon"
6
+ "github.com/arkuchy /gencon"
7
7
"golang.org/x/tools/go/analysis/singlechecker"
8
8
)
9
9
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
3
import (
4
- "github.com/ari1021 /gencon"
4
+ "github.com/arkuchy /gencon"
5
5
"golang.org/x/tools/go/analysis/unitchecker"
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package gencon_test
3
3
import (
4
4
"testing"
5
5
6
- "github.com/ari1021 /gencon"
6
+ "github.com/arkuchy /gencon"
7
7
"github.com/gostaticanalysis/testutil"
8
8
"golang.org/x/tools/go/analysis/analysistest"
9
9
)
Original file line number Diff line number Diff line change 1
- module github.com/ari1021 /gencon
1
+ module github.com/arkuchy /gencon
2
2
3
3
go 1.18
4
4
You can’t perform that action at this time.
0 commit comments