Metadata-Version: 2.1
Name: flake8_init_return
Version: 1.0.0
Summary: flake8 plugin which makes sure that __init__ functions have a return type
Home-page: https://github.com/keller00/flake8-init-return
Author: Mark Keller
Author-email: mark@markkeller.dev
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

flake8-init-return
================

flake8 plugin which forbids not having a return type on a class' `__init__` function

## installation

`pip install flake8-init-return`

## flake8 codes

| Code   | Description                         |
|--------|-------------------------------------|
| FIR100 | missing return value for initalizer |

## rationale

As [PEP-484](https://peps.python.org/pep-0484/) says, a class' `__init__`
functions ought to be annotated with `-> None`. This plugin makes sure
that they are annotated, but it leaves up the type checking for another
tool.

This might be useful when a type checker is not yet integrated
into a project's development flow.


## as a pre-commit hook

See [pre-commit](https://github.com/pre-commit/pre-commit) for instructions

Sample `.pre-commit-config.yaml`:

```yaml
-   repo: https://github.com/pycqa/flake8
    rev: 3.8.1
    hooks:
    -   id: flake8
        additional_dependencies: [flake8-init-return==1.0.0]
```
