blob: ab6766ec97f6a23f58773118f46abd97c5a06d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Ignoring autogenerated files
# -- Migration directories
# Ignoring error codes
# -- E128 continuation line under-indented for visual indent
# -- E261 at least two spaces before inline comment
# -- E225 missing whitespace around operator
# -- E501 line too long
pycodestyle --ignore=E128,E261,E225,E501 slugify test.py setup.py
|