Skip to content

Instantly share code, notes, and snippets.

View scottrabin's full-sized avatar

Scott Rabin scottrabin

  • @buffd-inc
  • Denver, CO
View GitHub Profile
@scottrabin
scottrabin / pre-commit
Last active December 9, 2015 15:30 — forked from kenkouot/pre-commit
#!/usr/bin/env python
import subprocess
import sys
import os.path, time
def get_modified_time(file):
return time.ctime(os.path.getmtime(file))
def run_js_tools(files_str):
"""Iterate though list and run code quality tools"""