summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-11-26 21:22:33 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-11-26 21:22:33 +0100
commit1981239478f21faa962fc49b99eb4076b6ee1190 (patch)
tree67bc771b298cbd95c45095088527a9fdf82cd710 /.flake8
parent5490f70b25341978b5ffff0c82b397abfb01ec40 (diff)
downloadqutebrowser-1981239478f21faa962fc49b99eb4076b6ee1190.tar.gz
qutebrowser-1981239478f21faa962fc49b99eb4076b6ee1190.zip
Add flake8-builtins
Diffstat (limited to '.flake8')
-rw-r--r--.flake84
1 files changed, 3 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 61fdc0326..74f68c27a 100644
--- a/.flake8
+++ b/.flake8
@@ -29,12 +29,14 @@ exclude = .*,__pycache__,resources.py
# D403: First word of the first line should be properly capitalized
# (false-positives)
# D413: Missing blank line after last section (not in pep257?)
+# A003: Builtin name for class attribute (needed for attrs)
ignore =
E128,E226,E265,E501,E402,E266,E722,E731,
F401,
N802,
P101,P102,P103,
- D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D413
+ D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D413,
+ A003
min-version = 3.4.0
max-complexity = 12
per-file-ignores =