Fix PEP-8 issue and move the pycodestyle config into a central location.

This commit is contained in:
Dave Page
2019-03-20 08:57:43 +00:00
parent a4bc26c810
commit 9273da2dc6
3 changed files with 5 additions and 4 deletions

View File

@@ -19,8 +19,9 @@ import re
import codecs
ALLOWED_FILE_EXTENSIONS = (
".py", ".js", ".sql", ".cpp", ".h", ".rc", ".am", ".wsgi", ".pro", ".plist",
".rst", ".sh", ".in", ".mako", ".ini", ".jsx", ".rtf", ".rst", "LICENSE"
".py", ".js", ".sql", ".cpp", ".h", ".rc", ".am", ".wsgi", ".pro",
".plist", ".rst", ".sh", ".in", ".mako", ".ini", ".jsx", ".rtf", ".rst",
"LICENSE"
)
EXCLUDE_DIR = ("node_modules")