mirror of https://github.com/kubevela/kubevela.git
9 lines
515 B
Plaintext
9 lines
515 B
Plaintext
# This is config file for staticcheck.
|
||
# If you need to add ignored checks, pls also add explaination in comments.
|
||
|
||
checks = ["all", "-ST1000", "-ST1003", "-ST1016", "-SA1019"]
|
||
|
||
# ST1000 - Incorrect or missing package comment (non-default)
|
||
# ST1003 – Poorly chosen identifier (non-default)
|
||
# ST1016 – Use consistent method receiver names (non-default)
|
||
# SA1019 – Using a deprecated function, variable, constant or field (non-default), ignore it for now for cue upgrades (TODO: remove it after CUE compatible) |