third_party.pylibs.pylint.src/bin/pylint.bat

20 lines
367 B
Batchfile
Raw Normal View History

2006-04-26 10:48:09 +00:00
@echo off
rem = """-*-Python-*- script
rem -------------------- DOS section --------------------
rem You could set PYTHONPATH or TK environment variables here
python -x %~f0 %*
goto exit
"""
# -------------------- Python section --------------------
import sys
from pylint import lint
lint.Run(sys.argv[1:])
DosExitLabel = """
:exit
rem """