.golangci.yml raw

   1  # Copyright (c) HashiCorp, Inc.
   2  # SPDX-License-Identifier: MPL-2.0
   3  
   4  linters:
   5    disable-all: true
   6    enable:
   7      - errcheck
   8      - staticcheck
   9      - gosimple
  10      - govet
  11  output_format: colored-line-number
  12