-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
26 lines (22 loc) · 925 Bytes
/
setup.cfg
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
; D107: We do not document __init__ method
; E128/133: We prefer hang-closing visual indents
; E251: We prefer `function(x = 1)` over `function(x=1)`
; W503/4: We break lines before binary operators (Knuth's style)
[flake8]
hang-closing = true
ignore = D107,E128,E251,W503
in-place = true
inline-quotes = "
multiline-quotes = """
import-order-style = appnexus
no-accept-encodings = true
application-import-names = openfisca_tracker
; W1203: We prefer to log with f-strings
[pylint.message_control]
disable = W1203
score = no
[tool:pytest]
addopts = --showlocals --exitfirst --doctest-modules
testpaths = tests
python_files = **/*.py
filterwarnings = ignore::DeprecationWarning