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
I'm using the init-hook to tell pylint where to find my librairies and it works fine in .pylintrc but it's not working when I move the content of .pylintrc in the setup.cfg file
Hi, thanks for the report. Currently pylint does not support setup.cfg, anything else other than the sanctioned format in pylintrc is not going to be supported due to various assumptions of the config parser we use. This might change in the future with #617 but can't promise an exact date when that is going to be supported.
Hello,
I'm using the
init-hook
to tell pylint where to find my librairies and it works fine in.pylintrc
but it's not working when I move the content of.pylintrc
in thesetup.cfg
fileSteps to reproduce
find . -name "*.py" -not -path '*/\.*' -exec pipenv run pylint --rcfile=.pylintrc '{}' +
=> OKfind . -name "*.py" -not -path '*/\.*' -exec pipenv run pylint --rcfile=setup.cfg '{}' +
=> NOKPlease note that the
disable=missing-docstring
works well since when I remove it, I getCurrent behavior
init-hook
seems to have no effectExpected behavior
init-hook
works like when it is in.pylintrc
pylint --version output
The text was updated successfully, but these errors were encountered: