summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-07-12 14:29:34 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-07-12 14:29:34 +0200
commitbf373e0ff66659af2b2b0114d0a5a2e286effa7c (patch)
tree82d8b06f61390f7783b4961d6fcfaaf1676ff9dc /.flake8
parent34a6b495ef736152fa35268a0e1ce63c6ba7254f (diff)
downloadqutebrowser-bf373e0ff66659af2b2b0114d0a5a2e286effa7c.tar.gz
qutebrowser-bf373e0ff66659af2b2b0114d0a5a2e286effa7c.zip
flake8: Disable new N818
Diffstat (limited to '.flake8')
-rw-r--r--.flake83
1 files changed, 2 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 9331484c3..5cfa2e76c 100644
--- a/.flake8
+++ b/.flake8
@@ -16,6 +16,7 @@ exclude = .*,__pycache__,resources.py
# (for pytest's __tracebackhide__)
# F401: Unused import
# N802: function name should be lowercase
+# N818: exception name '...' should be named with an Error suffix
# N806: variable in function should be lowercase
# P101: format string does contain unindexed parameters
# P102: docstring does contain unindexed parameters
@@ -44,7 +45,7 @@ ignore =
B001,B008,B305,
E128,E226,E265,E501,E402,E266,E722,E731,
F401,
- N802,
+ N802,N818,
P101,P102,P103,
D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D412,D413,
A003,