File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Thanks to all [contributors](https://github.com/golangci/golangci-lint/graphs/co
9
9
10
10
Thanks to developers and authors of used linters:
11
11
12
- {.ThanksList }
12
+ {{< thanks >} }
13
13
14
14
Thanks to [ alecthomas/gometalinter] ( https://github.com/alecthomas/gometalinter ) for inspiration and amazing work.
15
15
Original file line number Diff line number Diff line change
1
+ {{- $thanks := index $.Site.Data.thanks -}}
2
+
3
+ < table >
4
+ < thead >
5
+ < tr >
6
+ < th > Author</ th >
7
+ < th > Linter(s)</ th >
8
+ </ tr >
9
+ </ thead >
10
+ < tbody >
11
+ {{- range $thanks }}
12
+ < tr >
13
+ < td >
14
+ < a href ="{{.profile}} ">
15
+ < figure >
16
+ < img src ="{{.avatar}} " style ="max-width: 100%; " width ="50px; " title ="{{.name}} " alt ="{{.name}} " loading ="lazy ">
17
+ < figcaption > {{.name}}</ figcaption >
18
+ </ figure >
19
+ </ a >
20
+ </ td >
21
+ < td >
22
+ {{ $len := (len .linters) }}
23
+ {{- range $i, $v := .linters -}}
24
+ < code > {{ $v }}</ code > {{ if not (eq (add $i 1) $len) -}}, {{ end -}}
25
+ {{- end -}}
26
+ </ td >
27
+ </ tr >
28
+ {{- end -}}
29
+ </ tbody >
30
+ </ table >
You can’t perform that action at this time.
0 commit comments