github.com/bazelbuild/remote-apis-sdks@v0.0.0-20240425170053-8a36686a6350/.golangci.yml (about)

     1  # ref: https://golangci-lint.run/usage/configuration/#config-file
     2  
     3  issues:
     4    # Maximum issues count per one linter. Set to 0 to disable. Default is 50.
     5    max-issues-per-linter: 0
     6  
     7    # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
     8    max-same-issues: 0
     9  
    10  linters:
    11    enable:
    12      - wrapcheck
    13      - stylecheck
    14  
    15  linters-settings:
    16    stylecheck:
    17      go: "1.15"
    18    staticcheck:
    19      go: "1.15"
    20    wrapcheck:
    21      # An array of strings that specify substrings of signatures to ignore.
    22      # If this set, it will override the default set of ignored signatures.
    23      # See https://github.com/tomarrell/wrapcheck#configuration for more information.
    24      ignoreSigs:
    25        - .Errorf(
    26        - errors.New(
    27        - errors.Unwrap(
    28        - errors.WithStack(
    29        - .Wrap(
    30        - .Wrapf(
    31        - .WithMessage(