-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filename checks? #132
Comments
(Apologies if this isn't new, I couldn't find any existing issue but there are quite a few terms to search/filter so might have missed one) |
Except that sometimes things are passed on standard in and many modules use |
this may be something better accomplished through pep8-naming? |
@sigmavirus24
pycodestyle could only check for uppercase characters. These cause problems porting code from a case insensitive to case sensitive filesystem, and the main reason I opened this issue. I appreciate the name can't be checked from stdin. @asottile Yes it could be in that project instead. |
I transferred this over to pep8-naming since we were all in agreement about where it belonged. |
JFYI: a lot of module-level checks are covered in |
There are also two flake8 plugins that are related to this feature, but it will be nice to have it in pep8-naming:
|
|
PEP 8 states:
pycodestyle could check the passed filenames are lowercase to help enforce this.
The text was updated successfully, but these errors were encountered: