flake8-match

flake8 plugin which forbids match statements (PEP 634)

installation

pip install flake8-match

flake8 codes

Code Description
MAT001 do not use match statements

rationale

lol

as a pre-commit hook

See pre-commit for instructions

Sample .pre-commit-config.yaml:

-   repo: https://github.com/pycqa/flake8
    rev: 3.8.4
    hooks:
    -   id: flake8
        additional_dependencies: [flake8-match==1.0.0]

GitHub

https://github.com/asottile/flake8-match