1022 B
1022 B
python-indent-parser
This package is the base parser for Atom's python-indent package to better handle Python indentation after a new line.
Indent Types
Both indent types for continuing lines as described in PEP 0008 -- Style Guide for Python Code are auto-detected and applied by this package.
-
Aligned with Opening Delimiter
def function_with_lots_of_params(param_1, param_2, param_3, param_4, very_long_parameter_name, param_6)
-
Hanging
def function_with_lots_of_params( param_1, param_2, param_3, param_4, very_long_parameter_name, param_6)