github.com/anuvu/zot@v1.3.4/golangcilint.yaml (about)

     1  run:
     2    deadline: 60m
     3    skip-dirs:
     4      - "internal"
     5  
     6  linters:
     7    enable-all: true
     8    disable: funlen,godox,gocognit
     9  
    10  output:
    11    format: colored-line-number
    12  
    13  linters-settings:
    14    dupl:
    15      # tokens count to trigger issue, 150 by default
    16      threshold: 200
    17    nestif:
    18      # their are various nested if else, therefore specifying complexity as 26
    19      min-complexity: 26