feat: add ability to suppress git hints

It can be done by setting options in command. The commit author/email is
also now using this logic
This commit is contained in:
2024-08-22 18:17:56 +03:00
parent 1eb4d8e47f
commit d1ad5ecc11
5 changed files with 117 additions and 80 deletions

View File

@ -82,6 +82,7 @@ limit-inference-results=100
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=pylint.extensions.docparams,
pylint.extensions.bad_builtin,
definition_order,
import_order,
@ -131,6 +132,8 @@ attr-naming-style=snake_case
# style.
#attr-rgx=
bad-functions=print,
# Bad variable names which should always be refused, separated by a comma.
bad-names=foo,
bar,