2018-05-06 21:08:53 +03:00

25 lines
468 B
Go

package golinters
import (
"fmt"
"strings"
"github.com/golangci/golangci-lint/pkg/config"
)
func formatCode(code string, cfg *config.Run) string {
if strings.Contains(code, "`") {
return code // TODO: properly escape or remove
}
return fmt.Sprintf("`%s`", code)
}
func formatCodeBlock(code string, cfg *config.Run) string {
if strings.Contains(code, "`") {
return code // TODO: properly escape or remove
}
return fmt.Sprintf("```\n%s\n```", code)
}