You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# TODO(rm3l): all default linters are disabled in the context of https://github.com/devfile/api/issues/1257 (to just enforce that io/ioutil is not used anymore),
# but we should think about enabling all the default linters and fix the issues reported.
disable-all: false
enable:
# Go linter that checks if package imports are in a list of acceptable packages
- depguard
linters-settings:
depguard:
rules:
# Name of a rule.
main:
deny:
- pkg: "io/ioutil"
desc: "Deprecated since Go 1.16. Use the implementations from 'io' or 'os' packages instead."