Sign inSign up

daverick/pylint

By daverick

•Updated almost 8 years ago

a container for using pylint on the comand line

Image
0

184

daverick/pylint repository overview

pylint docker image works for files or modules that are in the ciurrent working directory or below

to use iteractively:

docker run -it --rm   -v "`pwd`":/usr/app -w /usr/app  daverick/pylint yourfile.py

if you want to use an alias:

alias pylint='docker run -it --rm   -v "`pwd`":/usr/app -w /usr/app  daverick/pylint pylint'

or use a bash script

#! /bin/bash
docker run  --rm -v "`pwd`":/usr/app -w /usr/app daverick/pylint pylint $@

Tag summary

Content type

Image

Digest

Size

342.1 MB

Last updated

almost 8 years ago

docker pull daverick/pylint