loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Configure golangci-lint to show all issues (#21106)

golangci by default [limits](https://golangci-lint.run/usage/configuration/#issues-configuration)
"same issues" to 3 which can be hindering when many issues are present.
Change it to always show all issues.

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>

authored by

silverwind
Lunny Xiao
wxiaoguang
and committed by
GitHub
39951445 1b630ff7

+3 -1
+3 -1
.golangci.yml
··· 40 40 stylecheck: 41 41 checks: ["all", "-ST1005", "-ST1003"] 42 42 nakedret: 43 - max-func-lines: 0 43 + max-func-lines: 0 44 44 gocritic: 45 45 disabled-checks: 46 46 - ifElseChain ··· 86 86 - github.com/unknwon/com: "use gitea's util and replacements" 87 87 88 88 issues: 89 + max-issues-per-linter: 0 90 + max-same-issues: 0 89 91 exclude-rules: 90 92 # Exclude some linters from running on tests files. 91 93 - path: _test\.go