1
0
mirror of https://github.com/Jguer/yay.git synced 2026-05-04 20:06:09 +02:00

fixed lint issues

This commit is contained in:
D1CED 2021-02-26 16:01:34 +01:00 committed by J Guerreiro
parent 1a8ee2012d
commit eb9ff86aa9
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import (
type IPackage = alpm.IPackage
type Depend = alpm.Depend
func VerCmp(a string, b string) int {
func VerCmp(a, b string) int {
return alpm.VerCmp(a, b)
}

View File

@ -15,7 +15,7 @@ type Filter func(Upgrade) bool
// Upgrade type describes a system upgrade.
type Upgrade = db.Upgrade
func StylizedNameWithRepository(u *Upgrade) string {
func StylizedNameWithRepository(u Upgrade) string {
return text.Bold(text.ColorHash(u.Repository)) + "/" + text.Bold(u.Name)
}
@ -87,7 +87,7 @@ func GetVersionDiff(oldVersion, newVersion string) (left, right string) {
func (u UpSlice) Print() {
longestName, longestVersion := 0, 0
for _, pack := range u {
packNameLen := len(StylizedNameWithRepository(&pack))
packNameLen := len(StylizedNameWithRepository(pack))
packVersion, _ := GetVersionDiff(pack.LocalVersion, pack.RemoteVersion)
packVersionLen := len(packVersion)
longestName = intrange.Max(packNameLen, longestName)
@ -103,7 +103,7 @@ func (u UpSlice) Print() {
fmt.Print(text.Magenta(fmt.Sprintf(numberPadding, len(u)-k)))
fmt.Printf(namePadding, StylizedNameWithRepository(&i))
fmt.Printf(namePadding, StylizedNameWithRepository(i))
fmt.Printf("%s -> %s\n", fmt.Sprintf(versionPadding, left), right)
}