github.com/andresbott/yamlfmt@v0.1.0/.golangci.yml (about)

     1  # sample config file: https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml
     2  issues:
     3    # List of regexps of issue texts to exclude.
     4    #
     5    # But independently of this option we use default exclude patterns,
     6    # it can be disabled by `exclude-use-default: false`.
     7    # To list all excluded by default patterns execute `golangci-lint run --help`
     8    #
     9    # Default: []
    10  
    11    # Excluding configuration per-path, per-linter, per-text and per-source
    12    exclude-rules:
    13      # Exclude some linters from running on tests files.
    14      - path: _test\.go
    15        linters:
    16          - gocyclo
    17          - errcheck
    18          - dupl
    19          - gosec