Skip to main content

A flake8 plugin that enforces 8-space indentation in function/class definitions

Project description

flake8-indent-in-def

This is a flake8 plugin enforces 8-space indentation in function/class definitions in Python code.

Installation

pip install flake8-indent-in-def

Violation codes

There is one violation code that this plugin reports:

Code Description
IND101 hanging indentation in function definition must be 8 spaces
IND102 if the 1st argument is on the same line as the function name, all other arguments must be on the same line
IND201 hanging indentation in class definition must be 8 spaces
IND202 if the 1st base class is on the same line as the class name, all other base classes must be on the same line

Style examples

Wrong

This plugin considers the following indentation styles wrong:

def some_function(arg1,
                  *,
                  arg2,
                  arg3):
    print(arg1)
def some_function(argument1,
                  argument2,
                  argument3, argument4, argumen5):
    print(argument1)

This following style above is the style choice of the black formatter. Both this plugin and PEP8 consider it wrong because arguments and function names would be difficult to visually distinghish.

def some_function(
    arg1: int,
    arg2: list,
    arg3: bool = None,
):
    print(arg1)

Correct

Correspondingly, here are the correct indentation styles:

def some_function(
        arg1: int,
        arg2: list,
        *,
        arg3: bool = None,
):
    print(arg1)
def some_function(
        arg1: int, arg2: list, arg3: bool = None
) -> None:
    print(arg1)
def some_function(arg1: int, arg2: list, arg3: bool = None) -> None:
    print(arg1)
def some_function(
        arg1: int, arg2: list,
        arg3: bool = None, arg4: float = 2.0,
) -> None:
    print(arg1)

Additionally, this plugin by default enforces the same indentation styles on class inheritence:

class MyClass(
        BaseClassA,
        BaseClassB,
        BaseClassC,
):
    def __init__(self):
        pass

You can opt out of class inheritence checks by ignoring rules IND201 and IND202.

Notes

  • This plugin does not check trailing commas, because flake8-commas already does it
  • This plugin does not forbid grouping arguments (see example below), because WPS317 can enforce it
def some_func(
        arg1, arg2, arg3,
        arg4, arg5,
):
    pass

Rationale

When we only indent by 4 spaces in function definitions, it is difficult to visually distinguish function arguments with the function name and the function body. This reduces readability. It is similar for base classes in class definitions, but it's less of an issue than function definitions.

Specifically, the following style is allowed by PEP8 but this plugin still consider it wrong, because it could lead to messy code diff when refactoring:

- def some_very_very_very_long_func(arg1,
+ def some_very_very_very_very_very_long_func(arg1,
                                    arg2,
                                    arg3,

):
    return None

Interaction with other style checkers and formatters

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8_indent_in_def-0.1.2.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

flake8_indent_in_def-0.1.2-py2.py3-none-any.whl (6.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flake8_indent_in_def-0.1.2.tar.gz.

File metadata

  • Download URL: flake8_indent_in_def-0.1.2.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for flake8_indent_in_def-0.1.2.tar.gz
Algorithm Hash digest
SHA256 da9745797813554dabca5ae3bae1606aaf85659f49fadc62bb6e0908dcac7a17
MD5 fd303b1047d7e9d93cf35c4894567f0f
BLAKE2b-256 92c121a4135778e4b6f09323ced1fb062a1672c7968e4b66b1c07a6945aa0cbf

See more details on using hashes here.

File details

Details for the file flake8_indent_in_def-0.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_indent_in_def-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ef56852e377f333d84d9d926287583f174e7f2eb757658e304af1fbfb2df6cb9
MD5 197e8e7f828ecc3e7d68f85075b0f625
BLAKE2b-256 3bae59121434f00e74b09e37a2e83275775cd082a5df6fd5979cf15969b77f29

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page