wistful / SublimeAutoPEP8

Automatically formats Python code to conform to the PEP 8 style guide using autopep8 and pep8 modules
144 stars 23 forks source link

this doesn't deal with function names, classes name and global variable name #37

Closed mebjas closed 8 years ago

mebjas commented 9 years ago

like mentioned in https://www.python.org/dev/peps/pep-0008/#function-names , the package doesn't take care of that?

wistful commented 9 years ago

SublimeAutoPep8 plugin uses autopep8 module to format code. I guess autopep8 doesn't do this because renaming functions and classes is rather refactoring than formatting and it's too dangerous. Anyway, you can ask autopep8 authors about this feature.