mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
fae07cbc8f
* Add Dependencie Update Script * update gitea.com/lunny/levelqueue * update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-redis/redis/v8 * update github.com/hashicorp/golang-lru * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/olivere/elastic/v7 * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark
77 lines
1.8 KiB
YAML
Vendored
77 lines
1.8 KiB
YAML
Vendored
run:
|
|
tests: true
|
|
skip-dirs:
|
|
- _examples
|
|
|
|
output:
|
|
print-issued-lines: false
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- maligned
|
|
- megacheck
|
|
- lll
|
|
- gocyclo
|
|
- dupl
|
|
- gochecknoglobals
|
|
- funlen
|
|
- godox
|
|
- wsl
|
|
- gomnd
|
|
- gocognit
|
|
- goerr113
|
|
- nolintlint
|
|
- testpackage
|
|
- godot
|
|
- nestif
|
|
- paralleltest
|
|
- nlreturn
|
|
- cyclop
|
|
- exhaustivestruct
|
|
- gci
|
|
- gofumpt
|
|
- errorlint
|
|
- exhaustive
|
|
- ifshort
|
|
- wrapcheck
|
|
- stylecheck
|
|
|
|
linters-settings:
|
|
govet:
|
|
check-shadowing: true
|
|
gocyclo:
|
|
min-complexity: 10
|
|
dupl:
|
|
threshold: 100
|
|
goconst:
|
|
min-len: 8
|
|
min-occurrences: 3
|
|
forbidigo:
|
|
forbid:
|
|
- (Must)?NewLexer
|
|
exclude_godoc_examples: false
|
|
|
|
|
|
issues:
|
|
max-per-linter: 0
|
|
max-same: 0
|
|
exclude-use-default: false
|
|
exclude:
|
|
# Captured by errcheck.
|
|
- '^(G104|G204):'
|
|
# Very commonly not checked.
|
|
- 'Error return value of .(.*\.Help|.*\.MarkFlagRequired|(os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked'
|
|
- 'exported method (.*\.MarshalJSON|.*\.UnmarshalJSON|.*\.EntityURN|.*\.GoString|.*\.Pos) should have comment or be unexported'
|
|
- 'composite literal uses unkeyed fields'
|
|
- 'declaration of "err" shadows declaration'
|
|
- 'should not use dot imports'
|
|
- 'Potential file inclusion via variable'
|
|
- 'should have comment or be unexported'
|
|
- 'comment on exported var .* should be of the form'
|
|
- 'at least one file in a package should have a package comment'
|
|
- 'string literal contains the Unicode'
|
|
- 'methods on the same type should have the same receiver name'
|
|
- '_TokenType_name should be _TokenTypeName'
|
|
- '`_TokenType_map` should be `_TokenTypeMap`'
|