AutoPEP8
Automatically formats Python code to conform to the PEP 8 style guide using autopep8 and pep8 modules
Details
Installs
- Total 130K
- Win 64K
- Mac 32K
- Linux 33K
Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 13 | 33 | 26 | 36 | 24 | 19 | 20 | 30 | 27 | 28 | 27 | 28 | 24 | 21 | 34 | 33 | 30 | 30 | 27 | 27 | 18 | 23 | 24 | 29 | 38 | 25 | 22 | 16 | 37 | 26 | 20 | 26 | 26 | 17 | 18 | 24 | 24 | 26 | 17 | 25 | 16 | 16 | 23 | 26 | 20 | 28 |
Mac | 3 | 12 | 20 | 16 | 37 | 18 | 19 | 9 | 21 | 23 | 33 | 169 | 10 | 44 | 16 | 16 | 13 | 23 | 65 | 8 | 7 | 7 | 6 | 10 | 13 | 13 | 9 | 4 | 11 | 11 | 12 | 9 | 16 | 3 | 3 | 9 | 11 | 14 | 12 | 12 | 4 | 6 | 4 | 10 | 14 | 14 |
Linux | 1 | 17 | 10 | 16 | 12 | 9 | 6 | 13 | 11 | 16 | 15 | 22 | 11 | 11 | 16 | 9 | 11 | 10 | 6 | 4 | 7 | 5 | 8 | 9 | 7 | 13 | 4 | 14 | 10 | 9 | 13 | 14 | 9 | 9 | 9 | 10 | 9 | 13 | 10 | 11 | 6 | 8 | 11 | 16 | 11 | 17 |
Readme
- Source
- raw.githubusercontent.com
Sublime Auto PEP8 Formatting
About
Automatically formats Python code to conform to the PEP 8 style guide using autopep8 library.
Supports ST3 only.
Features
- format / preview code according PEP8
- format / preview selected text
- format / preview all python modules in folder
- side bar menu
- format code while saving
Installing
The easiest way to install AutoPEP8 in through Package Control, which can be found at this site: http://wbond.net/sublime_packages/package_control.
Once you install Package Control, restart ST3 and bring up the Command Palette (Command+Shift+P
on OS X, Control+Shift+P
on Linux/Windows). Select “Package Control: Install Package”, wait while Package Control fetches the latest package list, then select AutoPEP8 when the list appears.
Pep8(pycodestyle) configuration
The extenstion supports both --global-config
and --ignore-local-config
options from the autopep8.
Settings
{
"max-line-length": 79,
// Do not fix these errors / warnings(e.g. E4, W)
"ignore": "",
// Select errors / warnings(e.g. E4, W)
"select": "",
// Number of spaces per indent level
"indent-size": 4,
// Don't look for and apply local config files;
// if false, defaults are updated with any config files in the project's root directory.
"ignore-local-config": false,
// Path to a global pep8 config file;
// if this file doesnot exist then this is ignored.
"global-config": "",
// Hang closing bracket instead of matching indentation of opening bracket's line.
"hang-closing": false,
// Specifies whether or not format files once they saved.
"format_on_save": false,
// If true - open new output panel with format/preview results.
"show_output_panel": true,
// Format/Preview menu items only appear for views
// with syntax from `syntax_list`
// value is base filename of the .tmLanguage syntax files
"syntax_list": ["Python"],
// The value shows how deep the plugin should look for *.py files
// before disabling "Preview" and "Format" items in the Side Bar "AutoPep8" Context Menu.
"file_menu_search_depth": 3, // max depth to search python files
// If value is false(default)
// then formatter doesn't treat absence of bottom empty line as an error
// and doesn't try to fix it.
"avoid_new_line_in_select_mode": false,
// For debug purporse only.
"debug": false,
"logfile": "/tmp/sublimeautopep8.log" // File to store debug messages.
}
Using
- SideBar - right click on the file(s) or folder(s)
- Active view - right click on the view
- Selected text - right click on the selected text
- On Save - provide by settings: option
format_on_save
- Command Palette - bring up the Command Palette and select
PEP8: Format Code
orPEP8: Preview Changes
- Hotkeys -
Command/Control + Shift + 8
to format code,Command/Control + 8
to preview changes