blob: 4720ddd706a26d110774ee60bd2e869514fe648c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
echo -e "\nRunning: pep8 ... \n"
# 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
pep8 --exclude=migrations --ignore=E128,E225,E501 slugify test.py setup.py
echo -e "Done.\n"
|