diff options
author | 2019-09-18 18:36:55 -0700 | |
---|---|---|
committer | 2019-09-18 18:37:02 -0700 | |
commit | 9d550ec2ed6748d9abd05c4429cb180965b82d60 (patch) | |
tree | b17dcb416ffe538509a70fef765fbe7ef917547c /.flake8 | |
parent | Lint remaining files (diff) |
Add manage.py to linting ignore
Synchronize output of `pipenv run lint` and `python -m flake8` for the current project structure
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ max-line-length=100 docstring-convention=all import-order-style=pycharm application_import_names=pydis_site -exclude=__pycache__, venv, .venv, **/migrations +exclude=__pycache__, venv, .venv, manage.py, **/migrations ignore= B311,W503,E226,S311,T000 # Missing Docstrings |