github.com/kubevela/workflow@v0.6.0/staticcheck.conf (about)

     1  # This is config file for staticcheck.
     2  # If you need to add ignored checks, pls also add explaination in comments. 
     3  
     4  checks = ["all", "-ST1000", "-ST1003", "-ST1016", "-SA1019"]
     5  
     6  # ST1000 - Incorrect or missing package comment (non-default)
     7  # ST1003 – Poorly chosen identifier (non-default)
     8  # ST1016 – Use consistent method receiver names (non-default)
     9  # SA1019 – Using a deprecated function, variable, constant or field (non-default), ignore it for now for cue upgrades (TODO: remove it after CUE compatible)