github.com/stillson/go-wf@v0.0.0-20240502203501-5781d3fae028/.golangci.yml (about)

     1  linters:
     2    enable:
     3      - gosec
     4      - godot
     5      - misspell
     6      - stylecheck
     7  
     8  linters-settings:
     9    stylecheck:
    10      # Select the Go version to target. The default is '1.13'.
    11      go: "1.21"
    12      checks: ["all","-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022"]
    13  
    14  issues:
    15    exclude-use-default: false
    16  
    17  output:
    18    format: colored-line-number
    19  
    20    # print lines of code with issue, default is true
    21    print-issued-lines: false
    22  
    23    # print linter name in the end of issue text, default is true
    24    print-linter-name: true