summaryrefslogtreecommitdiff
path: root/bin/epylint.bat
blob: a50678204c95392f44d5606c81edcc73704e3829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@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 """