github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/configs/path-except.yml (about)

     1  linters-settings:
     2    forbidigo:
     3      forbid:
     4        - fmt\.Print.*
     5        - time.Sleep(# no sleeping!)?
     6  
     7  issues:
     8    exclude-rules:
     9      # Apply forbidigo only to test files, exclude
    10      # it everywhere else.
    11      - path-except: _test\.go
    12        linters:
    13          - forbidigo