We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f738736 commit f99331aCopy full SHA for f99331a
scripts/website/expand_templates/linters.go
@@ -90,10 +90,10 @@ func getLintersListMarkdown(enabled bool) string {
90
}
91
92
func getName(lc *types.LinterWrapper) string {
93
- name := lc.Name
+ name := span(lc.Name, lc.Name)
94
95
if hasSettings(lc.Name) {
96
- name = fmt.Sprintf("[%[1]s](#%[2]s \"%[1]s configuration\")", name, lc.Name)
+ name = fmt.Sprintf("[%[1]s](#%[2]s \"%[1]s configuration\")", lc.Name, lc.Name)
97
98
99
if lc.OriginalURL != "" {
0 commit comments