forked from maread99/market_prices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
28 lines (21 loc) · 855 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
[flake8]
ignore =
# E203 (not PEP 8 compliant) ignored to not conflict with black
E203,
# W503 (not PEP 8 compliant) ignored to not conflict with black
W503,
# D105 Missing docstring in magic method. I have no issue with this.
# D Let pylint pick up all the doc errors
D
exclude =
*.ipynb_checkpoints
per-file-ignores =
# D103 Missing docstring in public function - not required for all tests
# D102 Missing docstring in public function - not required for all tests
# D401 First line should be in imperative moood - not useful to describe fixtures
tests/*.py:D103,D102,D401
# E501 line-too-long, provides for a doctest line that overruns
src/market_prices/utils/pandas_utils.py:E501
#max-line-length extended in line with black default style
max-line-length = 100
docstring-convention=numpy