Codebase list django-ipware / 63da2e67-dcba-4ae1-aa06-11f849cf1b60/main format.sh
63da2e67-dcba-4ae1-aa06-11f849cf1b60/main

Tree @63da2e67-dcba-4ae1-aa06-11f849cf1b60/main (Download .tar.gz)

format.sh @63da2e67-dcba-4ae1-aa06-11f849cf1b60/mainraw · history · blame

#!/bin/bash

# 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,tests --ignore=E128,E225,E241,E501 .
flake8 --exclude=migrations,tests --ignore=E128,E225,E241,E501 .