Metadata-Version: 2.1
Name: yesqa
Version: 0.0.11
Summary: Automatically remove unnecessary `# noqa` comments.
Home-page: https://github.com/asottile/yesqa
Author: Anthony Sottile
Author-email: asottile@umich.edu
License: MIT
Description: [![Build Status](https://travis-ci.org/asottile/yesqa.svg?branch=master)](https://travis-ci.org/asottile/yesqa)
        [![Coverage Status](https://coveralls.io/repos/github/asottile/yesqa/badge.svg?branch=master)](https://coveralls.io/github/asottile/yesqa?branch=master)
        
        yesqa
        =====
        
        A tool (and pre-commit hook) to automatically remove unnecessary `# noqa`
        comments, for example: a check that's no longer applicable (say you increased your
        max line length), a mistake (`# noqa` added to a line that wasn't failing),
        or other code in the file caused it to no longer need a `# noqa` (such as an unused import).
        
        ## Installation
        
        `pip install yesqa`
        
        
        ## 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://github.com/asottile/yesqa
            rev: v0.0.11
            hooks:
            -   id: yesqa
        ```
        
        If you need to select a specific version of flake8 and/or run with specific
        flake8 plugins, add them to [`additional_dependencies`][0].
        
        [0]: http://pre-commit.com/#pre-commit-configyaml---hooks
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
