gofmt is different between go versions and makes everything break

This commit is contained in:
Andrew Morgan 2019-01-30 12:20:48 +00:00
parent c3f65ede3b
commit 2c47a0c609
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
language: go
go:
- 1.10.x
- 1.11.x
install:
- go get github.com/golang/lint/golint
- go get github.com/fzipp/gocyclo

View File

@ -125,6 +125,6 @@ func ExtractUserLocalpart(userID string) (string, error) {
}
return strings.TrimPrefix(
strings.SplitN(userID, ":", 2)[0], // @foo:bar:8448 => [ "@foo", "bar:8448" ]
"@", // remove "@" prefix
"@", // remove "@" prefix
), nil
}