Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 209 Bytes

File metadata and controls

22 lines (17 loc) · 209 Bytes

Go Lint Examples

# Check
core go lint

# Auto-fix
core go lint --fix

Configuration

.golangci.yml:

linters:
  enable:
    - gofmt
    - govet
    - errcheck
    - staticcheck