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