github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/.golangci.yml (about)

     1  ---
     2  run:
     3    timeout: 5m
     4    skip-dirs:
     5      - state/runtime/fakevm
     6      - state/runtime/instrumentation
     7      - test
     8      - ci
     9  
    10  linters:
    11    enable:
    12    - whitespace
    13    - gosec
    14    - gci
    15    - misspell
    16    - gomnd
    17    - gofmt
    18    - goimports
    19    - revive
    20  
    21  linters-settings:
    22    revive:
    23      rules:
    24      - name: exported
    25        arguments:
    26        - disableStutteringCheck
    27  
    28  issues:
    29    include:
    30    - EXC0012  # EXC0012 revive: Annoying issue about not having a comment. The rare codebase has such comments
    31    - EXC0014  # EXC0014 revive: Annoying issue about not having a comment. The rare codebase has such comments