forked from typeddjango/django-stubs
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy path.flake8
More file actions
41 lines (41 loc) · 673 Bytes
/
.flake8
File metadata and controls
41 lines (41 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[flake8]
max-line-length = 88
exclude = .eggs,.git,.hg,.mypy_cache,.tox,.venv,venv,__pycached__,_build,buck-out,build,dist,node_modules
ignore =
; formatting handled by black
; https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
; https://github.com/ambv/black/issues/429
E101,
E111,
E114,
E115,
E116,
E117,
E121,
E122,
E123,
E124,
E125,
E126,
E127,
E128,
E129,
E131,
E133,
E2,
E3,
E5,
E701,
E702,
E703,
E704,
W1,
W2,
W3,
W503,
W504,
F401,
F821,
; wrong in type stubs '__all__ = []' for some reason
F822
Y015