1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-25 23:06:55 +01:00
lodel2_mirror/lint
ArnAud d34eb72490 Add a lint script used to test pep8 and lint error
usage ./lint path/to/file.py
2015-09-24 15:38:44 +02:00

3 lines
73 B
Bash
Executable file

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