code-intelligence.com/cifuzz@v0.40.0/.golangci.yaml (about)

     1  linters:
     2    disable-all: true
     3    enable:
     4      - errcheck
     5      - gocritic
     6      - govet
     7      - nonamedreturns
     8      - staticcheck
     9      - revive
    10    presets:
    11      - unused
    12  
    13  linters-settings:
    14    revive:
    15      rules:
    16        - name: var-naming
    17          severity: warning
    18          disabled: false
    19          arguments:
    20            - ["ID"] # Ignore
    21    staticcheck:
    22      checks:
    23        - "-SA3000"
    24    gocritic:
    25      enabled-tags:
    26        - diagnostic
    27        - performance
    28      disabled-checks:
    29        - appendCombine
    30        - appendAssign
    31        - commentFormatting
    32        - ifElseChain
    33        - singleCaseSwitch
    34  
    35  run:
    36    timeout: 3m