github.com/hamba/timex@v1.2.1-0.20240304044353-56d3de3a9ed9/.golangci.yml (about)

     1  run:
     2    tests: false
     3    timeout: 5m
     4  
     5  linters-settings:
     6    cyclop:
     7      max-complexity: 12
     8      skip-tests: true
     9    funlen:
    10      lines: 80
    11    gofumpt:
    12      extra-rules: true
    13    gosec:
    14      excludes:
    15        - G103
    16  
    17  linters:
    18    enable-all: true
    19    disable:
    20      - interfacer # deprecated
    21      - scopelint # deprecated
    22      - maligned # deprecated
    23      - golint # deprecated
    24      - exhaustivestruct # deprecated
    25      - deadcode # deprecated
    26      - nosnakecase # deprecated
    27      - structcheck # deprecated
    28      - ifshort # deprecated
    29      - varcheck # deprecated
    30      - exhaustive
    31      - gci
    32      - gochecknoglobals
    33      - goerr113
    34      - gomnd
    35      - nlreturn
    36      - maligned
    37      - wrapcheck
    38      - wsl
    39  
    40  issues:
    41    exclude-use-default: false