1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-10-21 16:49:02 +02:00

Add a lint script used to test pep8 and lint error

usage ./lint path/to/file.py
This commit is contained in:
ArnAud 2015-09-24 15:38:44 +02:00
commit d34eb72490

3
lint Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
pep8 --ignore=E501,E265,E266 $@
pylint -rn -d C0301,C0111 $@