A flake8 plugin to ban type hints.
Project description
A flake8 plugin to ban type hints.
This can be useful in code bases where you aren’t running type checking (yet?) but developers or their IDE’s add type hints that can be incorrect.
Requirements
Python 3.6 to 3.10 supported.
Installation
First, install with pip:
python -m pip install flake8-no-types
Second, check that flake8 lists the plugin in its version line:
$ flake8 --version
3.7.9 (flake8-no-types: 1.0.0, mccabe: 0.6.1, pycodestyle: 2.5.0, pyflakes: 2.1.1) CPython 3.8.0 on Darwin
Third, add the NT prefix to your select list. For example, if you have your configuration in setup.cfg:
[flake8]
select = E,F,W,NT
Linting a Django project? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests.
Rules
NT001: No type hints.
Flags all forms of type hints:
Function annotations: def foo() -> int:
Variable hints: foo: int = 1
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
Built Distribution
Hashes for flake8_no_types-1.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 335bab52a534037f2d5102f23f9ca2405783c9df71e4416b3a6ebc761519debd |
|
MD5 | a50442173b4b0c701a36f21f3e5275c9 |
|
BLAKE2b-256 | fd767c608f9ceb56797df62b8e2fc402c83fc35a16243a10ca98261cd111bfdf |