0.1.4 • Published 4 years ago

python-indent-parser v0.1.4

Weekly downloads
279
License
MIT
Repository
github
Last release
4 years ago

python-indent-parser

Build Status

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)
0.1.4

4 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago