https://github.com/mikeshultz/flake8-vyper
Flake8 wrapper to lint Vyper
https://github.com/mikeshultz/flake8-vyper
Last synced: 10 months ago
JSON representation
Flake8 wrapper to lint Vyper
- Host: GitHub
- URL: https://github.com/mikeshultz/flake8-vyper
- Owner: mikeshultz
- Created: 2019-03-21T21:04:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-22T16:49:10.000Z (over 7 years ago)
- Last Synced: 2025-06-06T16:49:14.572Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flake8-vyper
Flake8 wrapper to support Vyper. This is experimental, so, beware.
## Install
pip install flake8-vyper
## Usage
You can run flake8 with this wrapper with the command `flake8-vyper`.
## Configuration
You can use all the same CLI options as flake8, but config should be done in the `flake8-vyper`
section to prevent conflicts. Here's an example `tox.ini` for a project with python and vyper:
[flake8]
exclude = .git,__pycache__,build
max-line-length = 100
filename = *.py
[flake8-vyper]
exclude = .git,__pycache__,build
max-line-length = 100
filename = *.vy