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

17 lines
331 B
Batchfile
Raw Normal View History

@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 --------------------
from pylint import epylint
epylint.Run()
DosExitLabel = """
:exit
rem """