Files
kubevela/staticcheck.conf
Tianxin Dong c3ca308489 Chore: update cue version to 0.4.3 (#4425)
* Chore: update cue version to 0.4.3

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>

* resolve some comments

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>

* fix lint

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>

* add more tests

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>

* rebase and add more tests

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>

* resolve comments

Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
2022-08-08 17:57:48 +08:00

9 lines
515 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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)