forked from PsiQ/bartiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
31 lines (31 loc) · 830 Bytes
/
.flake8
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
[flake8]
max-line-length: 120
docstring-convention = google
ignore =
# Allow continuation line under-indented for visual indent.
E128,
# line contains XXX.
T102,
# Missing docstring in magic method.
D105,
# Missing docstring in __init__.
D107,
# Missing "Returns" in Docstring.
DAR201,
# 1 blank line required between summary line and description.
D205,
# Multi-line docstring summary should start at the first line.
D212,
# The docstring is missing an exception raised.
DAR401,
# The docstring describes an exception not explicitly raised.
DAR402,
# Line break after the binary operator
W503,
W504,
# Docstrings for public modules and packages
D100,
D104,
per-file-ignores =
tests/*:D100,D101,D102,D103,D104
__init__.py:F401