ChangeLog: - Adding gosec linting - Adding static type to enum - fixing nulltype overflow - Trying out gotestsum as an alternative to go-junit-report.xml
19 lines
401 B
YAML
19 lines
401 B
YAML
run:
|
|
# The default concurrency value is the number of available CPU.
|
|
concurrency: 4
|
|
# Timeout for analysis, e.g. 30s, 5m.
|
|
# Default: 1m
|
|
timeout: 30m
|
|
# Exit code when at least one issue was found.
|
|
# Default: 1
|
|
issues-exit-code: 2
|
|
# Include test files or not.
|
|
# Default: true
|
|
tests: false
|
|
|
|
issues:
|
|
exclude-dirs:
|
|
- tests
|
|
exclude-files:
|
|
- "_test.go"
|
|
- "testutils.go"
|