mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
1790f01dd9
* Upgrade xorm to v1.2.2 (#16663) Backport #16663 Fix #16683 * Add test to ensure that dumping of login sources remains correct (#16847) #16831 has occurred because of a missed regression. This PR adds a simple test to try to prevent this occuring again. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
76 lines
1.3 KiB
YAML
Vendored
76 lines
1.3 KiB
YAML
Vendored
run:
|
|
skip-files:
|
|
- encode_optype.go
|
|
- ".*_test\\.go$"
|
|
|
|
linters-settings:
|
|
govet:
|
|
enable-all: true
|
|
disable:
|
|
- shadow
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- dogsled
|
|
- dupl
|
|
- exhaustive
|
|
- exhaustivestruct
|
|
- errorlint
|
|
- forbidigo
|
|
- funlen
|
|
- gci
|
|
- gochecknoglobals
|
|
- gochecknoinits
|
|
- gocognit
|
|
- gocritic
|
|
- gocyclo
|
|
- godot
|
|
- godox
|
|
- goerr113
|
|
- gofumpt
|
|
- gomnd
|
|
- gosec
|
|
- ifshort
|
|
- lll
|
|
- makezero
|
|
- nakedret
|
|
- nestif
|
|
- nlreturn
|
|
- paralleltest
|
|
- testpackage
|
|
- thelper
|
|
- wrapcheck
|
|
- interfacer
|
|
- lll
|
|
- nakedret
|
|
- nestif
|
|
- nlreturn
|
|
- testpackage
|
|
- wsl
|
|
|
|
issues:
|
|
exclude-rules:
|
|
# not needed
|
|
- path: /*.go
|
|
text: "ST1003: should not use underscores in package names"
|
|
linters:
|
|
- stylecheck
|
|
- path: /*.go
|
|
text: "don't use an underscore in package name"
|
|
linters:
|
|
- golint
|
|
- path: rtype.go
|
|
linters:
|
|
- golint
|
|
- stylecheck
|
|
- path: error.go
|
|
linters:
|
|
- staticcheck
|
|
|
|
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
|
|
max-issues-per-linter: 0
|
|
|
|
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
|
|
max-same-issues: 0
|