mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 15:10:23 +00:00
25a44030f9
Downloads and uploads can be denied based on hook response
43 lines
No EOL
677 B
YAML
43 lines
No EOL
677 B
YAML
run:
|
|
timeout: 5m
|
|
issues-exit-code: 1
|
|
tests: true
|
|
|
|
|
|
linters-settings:
|
|
dupl:
|
|
threshold: 150
|
|
errcheck:
|
|
check-type-assertions: false
|
|
check-blank: false
|
|
goconst:
|
|
min-len: 3
|
|
min-occurrences: 3
|
|
gocyclo:
|
|
min-complexity: 15
|
|
gofmt:
|
|
simplify: true
|
|
goimports:
|
|
local-prefixes: github.com/drakkan/sftpgo
|
|
#govet:
|
|
# report about shadowed variables
|
|
#check-shadowing: true
|
|
#enable:
|
|
# - fieldalignment
|
|
|
|
linters:
|
|
enable:
|
|
- goconst
|
|
- errcheck
|
|
- gofmt
|
|
- goimports
|
|
- revive
|
|
- unconvert
|
|
- unparam
|
|
- bodyclose
|
|
- gocyclo
|
|
- misspell
|
|
- whitespace
|
|
- dupl
|
|
- rowserrcheck
|
|
- dogsled |