2be0e376f8
Adds a basic `setup.cfg` file with configurations for flake8 and pylama, fixes some basic issues with essentially every file including: * Many, many, whitespace line cleanups * Several unused variables and imports * Missing coding and shabang lines * Minor style fixes to more closely align with PEP8 * Turn `print` into function calls for Python 2/3 compat * A few minor bugs * Things like using an undefined `i` in `stream_limiter_ban_email.py`
12 lines
260 B
INI
12 lines
260 B
INI
; Contains configuration for various linters
|
|
|
|
; E501: Disable line length limits (for now)
|
|
; W504: Require newlines after binary operators, use W503 for requiring the
|
|
; operators on the next line
|
|
|
|
[flake8]
|
|
ignore = E501,W504
|
|
|
|
[pylama]
|
|
ignore = E501,W504
|