forked from further-reading/scrapy-settings-log
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.flake8
37 lines (36 loc) · 1.04 KB
/
.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
32
33
34
35
36
37
[flake8]
ignore =
E501,
# "max-line length" - Handled by black.
W503,
# "line break before binary operator" - Handled by black.
D100,
# Missing docstring in public module
D101,
# Missing docstring in public class
D103,
# Missing docstring in public function
D102,
# Missing docstring in public method
D104,
# Missing docstring in public package
D105,
# Missing docstring in magic method
D107,
# Missing docstring in __init__
D200,
# One-line docstring should fit on one line with quotes
D202,
# No blank lines allowed after function docstring
D205,
# 1 blank line required between summary line and description
D209,
# Multi-line docstring closing quotes should be on a separate line
D400,
# First line should end with a period
D401,
# First line should be in imperative mood
D402,
# First line should not be the function's "signature"
P103,
# Other string does contain unindexed parameters