summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-11-09 22:17:36 -0500
committerJason R. Coombs <jaraco@jaraco.com>2018-11-10 08:00:28 -0500
commitd0f07a4e7ad465b0935bf85da94b12b9b8cc2e77 (patch)
treeca04ea5b749dff924bbba9d8bbe74ee801d39d68 /.flake8
parent166b43e1429fa1b9b467da82109151222719cc20 (diff)
downloadpytest-runner-d0f07a4e7ad465b0935bf85da94b12b9b8cc2e77.tar.gz
Add black config, pre-commit including black, check code with black.
Diffstat (limited to '.flake8')
-rw-r--r--.flake85
1 files changed, 3 insertions, 2 deletions
diff --git a/.flake8 b/.flake8
index c85d34a..790c109 100644
--- a/.flake8
+++ b/.flake8
@@ -1,8 +1,9 @@
[flake8]
+max-line-length = 88
ignore =
- # Allow tabs for indentation
- W191
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
W503
# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
W504
+ # Black creates whitespace before colon
+ E203