Skip to content

Instantly share code, notes, and snippets.

@kapb14
Created December 20, 2018 16:46
Show Gist options
  • Select an option

  • Save kapb14/a6e90a263dd3fe9ed2296967ad619c67 to your computer and use it in GitHub Desktop.

Select an option

Save kapb14/a6e90a263dd3fe9ed2296967ad619c67 to your computer and use it in GitHub Desktop.
User settings of PyYapf plugin for Sublime3
{
"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