Skip to content

Instantly share code, notes, and snippets.

@jeffgodwyll
Last active April 16, 2017 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffgodwyll/65ec983eeb2e37aa0a2b1abbfa332458 to your computer and use it in GitHub Desktop.
Save jeffgodwyll/65ec983eeb2e37aa0a2b1abbfa332458 to your computer and use it in GitHub Desktop.
Check for style guide issues before commit

Install flake8

$ pip install flake8`

Edit pre-commit file

$ vim .git/hooks/pre-commit`

to show and enforce styleguide conventions before commit, add the following:

#!/bin/sh 
flake8 . 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment