Metadata-Version: 2.1
Name: flake8-vyper
Version: 0.1.1
Summary: Plugin for flake8 to support Vyper
Home-page: https://gitlab.com/mikeshultz/flake8-vyper
Author: Mike Shultz
Author-email: mike@mikeshultz.com
License: MIT
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
Requires-Dist: flake8 (>3.0.0)

# flake8-vyper

Flake8 vyper plugin.  This plugin is experimental, so, beware.

**NOTE**: This plugin is not really usable yet for automation.  Any supressed errors will still cause `flake8` to return an exit code greater than zero.

## Install

    pip install flake8-vyper

## VyperFilterPlugin

This plugin filters out false-positives for expected Vyper globals and types.

### Usage

Alter your `.flake8` config so that the following lines are included in the
`[flake8]` section of the INI.

    [flake8]
    format = vyper_filter
    filename = *.py,*.vy

Alternatively, you can specify this with the `flake8` CLI command:

    flake8 --format=vyper_filter


