Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misspell should ignore go.sum file #159

Open
fhs opened this issue Aug 27, 2019 · 1 comment
Open

misspell should ignore go.sum file #159

fhs opened this issue Aug 27, 2019 · 1 comment

Comments

@fhs
Copy link

fhs commented Aug 27, 2019

misspell complains about spelling in auto-generated file go.sum:

$ mkdir /tmp/foo
$ cd /tmp/foo
$ go mod init example.com/foo
go: creating new go.mod: module example.com/foo
$ go get golang.org/x/sync@37e7f081c4d4
go: finding golang.org/x/sync 37e7f081c4d4
go: finding golang.org 37e7f081c4d4
go: finding golang.org/x 37e7f081c4d4
$ misspell .
go.sum:1:56: "YUO" is a misspelling of "YOU"
$ cat go.sum 
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 h1:YUO/7uOKsKeq9UokNS62b8FYywz3ker1l1vDZRCRefw=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@stmcginnis
Copy link

I believe this is typically handled by adding go.sum and go.mod to your .misspellignore file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants