github.com/chenfeining/golangci-lint@v1.0.2-0.20230730162517-14c6c67868df/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