Metadata-Version: 2.1
Name: flake8-match
Version: 1.0.0
Summary: flake8 plugin which forbids match statements (PEP 634)
Home-page: https://github.com/asottile/flake8-match
Author: Anthony Sottile
Author-email: asottile@umich.edu
License: MIT
Description: [![Build Status](https://dev.azure.com/asottile/asottile/_apis/build/status/asottile.flake8-match?branchName=master)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=69&branchName=master)
        [![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/asottile/asottile/69/master.svg)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=69&branchName=master)
        [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/asottile/flake8-match/master.svg)](https://results.pre-commit.ci/latest/github/asottile/flake8-match/master)
        
        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](https://github.com/pre-commit/pre-commit) for instructions
        
        Sample `.pre-commit-config.yaml`:
        
        ```yaml
        -   repo: https://gitlab.com/pycqa/flake8
            rev: 3.8.4
            hooks:
            -   id: flake8
                additional_dependencies: [flake8-match==1.0.0]
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
