https://github.com/omercnet/docker-pycodestyle
https://github.com/omercnet/docker-pycodestyle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/omercnet/docker-pycodestyle
- Owner: omercnet
- Created: 2017-05-06T19:53:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-22T17:27:14.000Z (over 3 years ago)
- Last Synced: 2025-03-28T07:25:20.971Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker image for pycodestyle checker
[pycodestyle](https://pypi.python.org/pypi/pycodestyle) is a Python style guide checker
## Usage
```console
$ docker run --rm -v /path/to/python/code:/code omercnet/pycodestyle
```
## Advanced usage
Exclude files or directories:
```console
$ docker run --rm -v /path/to/python/code:/code \
omercnet/pycodestyle --exclude=skins /code
```
See pycodestyle `--help` for more options:
```console
$ docker run --rm omercnet/pycodestyle --help
```