Skip to content

Commit

Permalink
chore: use Go module
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Oct 11, 2022
1 parent 950f5d1 commit 687d47b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ dist/
bin/
vendor/

.idea/

# editor turds
*~
*.gz
Expand Down
2 changes: 1 addition & 1 deletion cmd/misspell/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"text/template"
"time"

"github.com/client9/misspell"
"github.com/golangci/misspell"
)

var (
Expand Down
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/golangci/misspell

go 1.18

require github.com/gobwas/glob v0.2.3
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=
github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8=

0 comments on commit 687d47b

Please sign in to comment.