#- maintidx # maintidx measures the maintainability index of each function.
#- misspell # [useless] Finds commonly misspelled English words in comments
#- nlreturn # [too strict and mostly code is not more readable] nlreturn checks for a new line before return and branch statements to increase code clarity
#- nosnakecase # Detects snake case of variable naming and function name. # TODO: maybe enable after https://github.com/sivchari/nosnakecase/issues/14
#- paralleltest # [too many false positives] paralleltest detects missing usage of t.Parallel() method in your Go test
#- tagliatelle # Checks the struct tags.
#- thelper # thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers
paralleltest # [too many false positives] paralleltest detects missing usage of t.Parallel() method in your Go test
tagliatelle # Checks the struct tags.
thelper # thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers
https://github.com/redhat-et/copilot-ops/blob/4f0ad968040a0176c85abe8fd78eede1c014abee/.golangci.yaml#L239