Codebase list django-ipware / 4038fbbe-2155-4f04-8265-70b6227319f4/main format.sh
4038fbbe-2155-4f04-8265-70b6227319f4/main

Tree @4038fbbe-2155-4f04-8265-70b6227319f4/main (Download .tar.gz)

format.sh @4038fbbe-2155-4f04-8265-70b6227319f4/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 .