forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
580 B
TOML
40 lines
580 B
TOML
3 years ago
|
indent = [
|
||
|
"list",
|
||
|
"tuple",
|
||
|
"dictionary",
|
||
|
"set",
|
||
|
|
||
|
"if_statement",
|
||
|
"for_statement",
|
||
|
"while_statement",
|
||
|
"with_statement",
|
||
|
"try_statement",
|
||
|
"import_from_statement",
|
||
|
|
||
|
"parenthesized_expression",
|
||
|
"generator_expression",
|
||
|
"list_comprehension",
|
||
|
"set_comprehension",
|
||
|
"dictionary_comprehension",
|
||
|
|
||
|
"tuple_pattern",
|
||
|
"list_pattern",
|
||
|
"argument_list",
|
||
|
"parameters",
|
||
|
"binary_operator",
|
||
|
|
||
|
"function_definition",
|
||
|
"class_definition",
|
||
|
]
|
||
|
|
||
|
outdent = [
|
||
|
")",
|
||
|
"]",
|
||
|
"}",
|
||
|
"return_statement",
|
||
|
"pass_statement",
|
||
|
"raise_statement",
|
||
|
]
|
||
|
|
||
|
ignore = ["string"]
|