mirror of
https://github.com/Hopiu/django-uuslug.git
synced 2026-03-16 20:10:24 +00:00
11 lines
289 B
Bash
Executable file
11 lines
289 B
Bash
Executable file
#!/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 --ignore=E128,E225,E501 .
|
|
|