Go to file
2018-05-30 21:38:46 +00:00
.pre-commit-hooks.yaml Mirror: 0.1 2018-05-30 21:38:46 +00:00
.version Mirror: 0.238 2018-05-30 21:38:46 +00:00
README.md Add a README 2018-05-30 14:33:54 -07:00
setup.py Mirror: 0.238 2018-05-30 21:38:46 +00:00

mypy mirror

Mirror of mypy for pre-commit.

For pre-commit: see https://github.com/pre-commit/pre-commit For mypy: see https://github.com/python/mypy

Using mypy with pre-commit:

Add this to your .pre-commit-config.yaml

-   repo: https://github.com/pre-commit/mirrors-mypy
    rev: ''  # Use the sha / tag you want to point at
    hooks:
    -   id: mypy

By default, mypy will run with mypy --ignore-missing-imports, pre-commit runs mypy from an isolated virtualenv so it won't have access to those. To change the arguments, override the args as follows:

    hooks:
    -   id: mypy
        args: [--no-strict-optional, --ignore-missing-imports]