Skip to content

Instantly share code, notes, and snippets.

View PatrickSchiffmann's full-sized avatar

Patrick Schiffmann PatrickSchiffmann

View GitHub Profile
@PatrickSchiffmann
PatrickSchiffmann / pylint-recursive.py
Last active July 13, 2018 10:10 — forked from gregorynicholas/pylint-recursive.py
Module that runs pylint on all python scripts found in a directory tree..
#! /usr/bin/env python
'''
Module that runs pylint on all python scripts found in a directory tree..
'''
import re
import sys
import subprocess
TOTAL = 0.0