dotfiles/sublime/AutoPep8.sublime-settings
2019-02-08 09:03:23 +01:00

29 lines
746 B
Plaintext

{
"max-line-length": 79,
// list codes for fixes; used by --ignore and --select
"list-fixes": "",
// do not fix these errors / warnings(e.g. E4, W)
"ignore": "E24, E226, D",
// select errors / warnings(e.g. E4, W)
"select": "",
// number of spaces per indent level
"indent-size": 4,
"format_on_save": true,
"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"],
"file_menu_search_depth": 3, // max depth to search python files
"avoid_new_line_in_select_mode": false,
// print debug info into the console
"debug": false
}