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
No complaints about the fooBar argument (should be snake_case).
Expected behavior
Issues a message that fooBar is not in snake_case style.
The following example issues correctly foo_bar.py:6:4: C0103: Argument name "fooBarArg" doesn't conform to snake_case naming style (invalid-name) for the foo_bar method, but not for the __init__ method.
Steps to reproduce
foo_bar.py
:pylint foo_bar
Current behavior
No complaints about the
fooBar
argument (should besnake_case
).Expected behavior
Issues a message that
fooBar
is not insnake_case
style.The following example issues correctly
foo_bar.py:6:4: C0103: Argument name "fooBarArg" doesn't conform to
snake_casenaming style (invalid-name)
for thefoo_bar
method, but not for the__init__
method.Edit: it does so with the default settings and with my custom settings with I have added as attachement.
pylintrc.txt
pylint --version output
The text was updated successfully, but these errors were encountered: