summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-08 23:14:07 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-01-08 23:34:52 -0500
commit3e876d7906fa6387ab6ac9a9bff8659762363017 (patch)
treebf18b99b514f0cfd4855891388e5f236958cf510
parenta36768aa363c8f7b54aae00e11f895ff06337532 (diff)
downloadpytest-runner-3e876d7906fa6387ab6ac9a9bff8659762363017.tar.gz
Enable complexity limit. Fixes jaraco/skeleton#34.
-rw-r--r--.flake84
1 files changed, 4 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
index 790c109..59a51f8 100644
--- a/.flake8
+++ b/.flake8
@@ -1,5 +1,9 @@
[flake8]
max-line-length = 88
+
+# jaraco/skeleton#34
+max-complexity = 10
+
ignore =
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
W503