-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Fernandez Ludovic <[email protected]> Co-authored-by: Anton Telyshev <[email protected]>
- Loading branch information
1 parent
1bfcc5f
commit de1c391
Showing
6 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package golinters | ||
|
||
import ( | ||
"github.com/catenacyber/perfsprint/analyzer" | ||
"golang.org/x/tools/go/analysis" | ||
|
||
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis" | ||
) | ||
|
||
func NewPerfSprint() *goanalysis.Linter { | ||
a := analyzer.Analyzer | ||
|
||
return goanalysis.NewLinter( | ||
a.Name, | ||
a.Doc, | ||
[]*analysis.Analyzer{a}, | ||
nil, | ||
).WithLoadMode(goanalysis.LoadModeTypesInfo) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
//golangcitest:args -Eperfsprint | ||
package testdata | ||
|
||
import "fmt" | ||
|
||
func TestPerfsprint() { | ||
var ( | ||
s string | ||
err error | ||
b bool | ||
i int | ||
i64 int64 | ||
ui uint | ||
) | ||
|
||
fmt.Sprintf("%s", s) // want "fmt.Sprintf can be replaced with just using the string" | ||
fmt.Sprint(s) // want "fmt.Sprint can be replaced with just using the string" | ||
fmt.Sprintf("%s", err) // want "fmt.Sprintf can be replaced with err.Error()" | ||
fmt.Sprint(err) // want "fmt.Sprint can be replaced with err.Error()" | ||
fmt.Sprintf("%t", b) // want "fmt.Sprintf can be replaced with faster strconv.FormatBool" | ||
fmt.Sprint(b) // want "fmt.Sprint can be replaced with faster strconv.FormatBool" | ||
fmt.Sprintf("%d", i) // want "fmt.Sprintf can be replaced with faster strconv.Itoa" | ||
fmt.Sprint(i) // want "fmt.Sprint can be replaced with faster strconv.Itoa" | ||
fmt.Sprintf("%d", i64) // want "fmt.Sprintf can be replaced with faster strconv.FormatInt" | ||
fmt.Sprint(i64) // want "fmt.Sprint can be replaced with faster strconv.FormatInt" | ||
fmt.Sprintf("%d", ui) // want "fmt.Sprintf can be replaced with faster strconv.FormatUint" | ||
fmt.Sprint(ui) // want "fmt.Sprint can be replaced with faster strconv.FormatUint" | ||
fmt.Sprintf("%x", []byte{'a'}) // want "fmt.Sprintf can be replaced with faster hex.EncodeToString" | ||
|
||
fmt.Sprint("test", 42) | ||
fmt.Sprint(42, 42) | ||
fmt.Sprintf("test") | ||
fmt.Sprintf("%v") | ||
fmt.Sprintf("%d") | ||
fmt.Sprintf("%d", 42, 42) | ||
fmt.Sprintf("%#d", 42) | ||
fmt.Sprintf("value %d", 42) | ||
fmt.Sprintf("val%d", 42) | ||
fmt.Sprintf("%s %v", "hello", "world") | ||
fmt.Sprintf("%#v", 42) | ||
fmt.Sprintf("%T", struct{ string }{}) | ||
fmt.Sprintf("%%v", 42) | ||
fmt.Sprintf("%3d", 42) | ||
fmt.Sprintf("% d", 42) | ||
fmt.Sprintf("%-10d", 42) | ||
fmt.Sprintf("%[2]d %[1]d\n", 11, 22) | ||
fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6) | ||
fmt.Sprintf("%d %d %#[1]x %#x", 16, 17) | ||
} |