Created
December 20, 2018 16:46
-
-
Save kapb14/a6e90a263dd3fe9ed2296967ad619c67 to your computer and use it in GitHub Desktop.
User settings of PyYapf plugin for Sublime3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "yapf_command": "C:\\www\\env\\Scripts\\yapf.exe", | |
| "on_save": false, | |
| "use_entire_file_if_no_selection": true, | |
| "popup_errors": false, | |
| "config": { | |
| // The column limit. | |
| "COLUMN_LIMIT": 120, | |
| // The number of columns to use for indentation. | |
| "INDENT_WIDTH": 4, | |
| // Indent width for line continuations. | |
| "CONTINUATION_INDENT_WIDTH": 4, | |
| // Join short lines into one line. E.g., single line if statements. | |
| "JOIN_MULTIPLE_LINES": true, | |
| // | |
| "DEDENT_CLOSING_BRACKETS": true, | |
| "INDENT_DICTIONARY_VALUE": false, | |
| "SPACE_BETWEEN_ENDING_COMMA_AND_CLOSING_BRACKET": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment