-
Notifications
You must be signed in to change notification settings - Fork 5
/
.flake8
20 lines (18 loc) · 788 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[flake8]
exclude = .git
ignore =
# Line break after binary operator. <https://www.flake8rules.com/rules/W504.html>.
W504,
# Line break occurred before a binary operator. <https://www.flake8rules.com/rules/W503.html>.
W503,
# Whitespace before ':'. <https://www.flake8rules.com/rules/E203.html>.
E203,
# Line too long. <https://www.flake8rules.com/rules/E501.html>.
E501,
# Continuation line over-indented for hanging indent. <https://www.flake8rules.com/rules/E126.html>.
E126,
# Visually indented line with same indent as next logical line. <https://www.flake8rules.com/rules/E129.html>.
E129
per-file-ignores =
# Module level import not at top of file. <https://www.flake8rules.com/rules/E402.html>.
tests/test_fetching.py:E402