aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-06-23 20:08:24 -0700
committerBryan Newbold <bnewbold@archive.org>2020-06-23 20:08:24 -0700
commitccf588f6d677b0fa3295a69edb5ba64a50897737 (patch)
treeebcc9cf205b26409cd1d9d5b0bc21fad48716771
parentd234b45e1e25d18bc9d987bf7d0b7fc922e16d8b (diff)
downloadchocula-ccf588f6d677b0fa3295a69edb5ba64a50897737.tar.gz
chocula-ccf588f6d677b0fa3295a69edb5ba64a50897737.zip
flake8: ignore comment w/o space
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 73c3bdb..49935ce 100644
--- a/.flake8
+++ b/.flake8
@@ -1,7 +1,7 @@
[flake8]
# TODO: ANN for better annotation coverage
select = C,E,F,W
-ignore = F405,F403,W503,E231,E203,E501,E226,E711,E713,ANN101,ANN204,ANN102
+ignore = F405,F403,W503,E231,E203,E501,E226,E711,E713,E265,ANN101,ANN204,ANN102
max-complexity = 20
exclude = .git,__pycache__,.venv
max-line-length = 120