Python type annotation existence checker
Project description
PyLeft
Python type annotation existence checker
pyleft
is a complement to Microsoft's pyright
tool. While pyright
does an excellent job at type checking your Python code,
it doesn't check to make sure type hints exist. If you forget to add type hints
to a function, pyright
will usually see no problems with it. This tool checks
to make sure all of your code has type hints, while leaving it to
pyright
to make sure they are actually correct.
Installation
PyLeft requires Python 3.7+.
pip install pyleft
Usage
PyLeft is a Python module that can be run via python -m
. Just provide the directories
or files to recursively check.
pyleft .
The module will exit with an exit code of 0 if all type hints are present, or 1 if there are any issues.
Example
> pyleft .
"C:\Users\nvaug\Repos\pyleft\tests\files\fail_4.py:4" Argument 'one' of function 'wheels' has no type annotation
"C:\Users\nvaug\Repos\pyleft\tests\files\fail_1.py:1" Argument 'two' of function 'add' has no type annotation
"C:\Users\nvaug\Repos\pyleft\tests\files\fail_3.py:2" Function 'drive' has no return type annotation
"C:\Users\nvaug\Repos\pyleft\tests\files\options_1.py:1" Argument 'arg1' of function 'positional_default_value' has no type annotation
"C:\Users\nvaug\Repos\pyleft\tests\files\options_1.py:5" Argument 'arg2' of function 'keyword_default_value' has no type annotation
"C:\Users\nvaug\Repos\pyleft\tests\files\fail_2.py:1" Function 'add' has no return type annotation
Pre-Commit
This can also be used as a pre-commit hook:
- hooks:
- id: pyleft
repo: https://github.com/nathanvaughn/pyleft
rev: v1.2.1
Options
paths
: File and directory names to recursively check.--exclude
: (optional) List of pattern(s) of files/directories to exclude in gitignore format. Takes precedence overpaths
.--no-gitignore
: (optional) Don't use the exclusions from the .gitignore file(s) in the current working directory.--ignore-if-has-default
: (optional) Ignore a lack of annotation if a function argument has a default value.--quiet
: (optional) Don't print any output to STDOUT.--verbose
: (optional) Print debugging information to STDERR.
Configuration
Configuration is done through the pyproject.toml
file.
[tool.pyleft]
# "paths" in the configuration file are added to the option given on the
# command line
# This can either be a list, or a space separated string
paths = ["extra/directory/"]
# This can either be a list, or a space separated string
exclude = ["*_pb2.py"]
# These are all booleans
no-gitignore = false
ignore-if-has-default = false
quiet = false
verbose = false
Design Decisions
If a .pyi
file exists alongside a .py
file, only the .pyi
file will be checked.
The __init__
and __new__
methods of a class are not required to
have return type hints. pyright
automatically assumes this to be None
.
The first (self
) argument of any class method is not required to have a type hint.
The first (cls
) argument of any class @property
or @classmethod
or __new__
method is not required to have a type hint.
Any variable argument list (*arg
) or keyword argument dict (**kwarg
)
is not required to have a type hint.
Types of types, such as List
or Tuple
are not required. For example,
a type hint of just list
is allowed, although you should normally be as specific
as possible with a better type hint like List[int]
.
Individual functions can be ignored with a # noqa
comment on the same line.
Disclaimer
This project is not affiliated in any way with Microsoft.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file pyleft-1.2.2.tar.gz
.
File metadata
- Download URL: pyleft-1.2.2.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37999f57bcda4fb984697e5e2f999e6077d35d878cbddaba1fba225909def7e7 |
|
MD5 | 5dbbb3697a12360c510bddeb3b3378a6 |
|
BLAKE2b-256 | 3ba6979d7c1aac51b9e8f407ea048bf0021280b86bb2ec07f602fbacd9eb8733 |
File details
Details for the file pyleft-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: pyleft-1.2.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59deb7dffdf9877f4782b65f6695bb6b20c0f5cb529a3721aade29fbb48f009c |
|
MD5 | 2daf8a7b25e3848d9d58168505d324b6 |
|
BLAKE2b-256 | efa1647cc2240f1580ec9d882252cf88774f817261f91f1dc3002d01bcc16fc4 |