django-uuslug/formatter.sh

12 lines
289 B
Bash
Raw Normal View History

2012-10-15 03:22:58 +00:00
#!/bin/bash
2014-03-08 13:39:34 +00:00
# Ignoring autogenerated files
# -- Migration directories
# Ignoring error codes
# -- E128 continuation line under-indented for visual indent
# -- E225 missing whitespace around operator
# -- E501 line too long
pycodestyle --exclude=migrations --ignore=E128,E225,E501 .
2014-03-08 13:39:34 +00:00