File: run_pylint.sh

package info (click to toggle)
svn-workbench 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,164 kB
  • ctags: 2,111
  • sloc: python: 15,849; sh: 236; makefile: 11; ansic: 9
file content (6 lines) | stat: -rwxr-xr-x 158 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
#!/usr/bin/env python
import sys
import os
os.environ[ 'PYLINTHOME' ] = 'pylint.d'
from pylint import lint
lint.Run( ['--rcfile=./pylintrc'] + sys.argv[1:] )