-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
33 lines (28 loc) · 1.02 KB
/
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
27
28
29
30
31
32
33
# D203: 1 blank line required before class docstring
# D100: Missing docstring in public module
# D101: Missing docstring in public class
# D102: Missing docstring in public method
# D103: Missing docstring in public function
# D104: Missing docstring in public package
# D105: Missing docstring in magic method
# D106: Missing docstring in public nested class
# D107: Missing docstring in __init__
# D401: First line should be imperative
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,node_modules,*settings*,manage.py,wsgi.py
ignore = D203, D100, D101, D102, D103, D104, D105, D106, D107, D401
max-complexity = 7
application-import-names = money_tracker
import_order_style = smarkets
[pycodestyle]
max-line-length = 120
exclude=.tox,.git,*/migrations/*,*/static/CACHE/*,node_modules,*settings*,manage.py,wsgi.py
ignore = D203, D100, D101, D102, D103, D104, D105, D106, D107, D401
[tool:pytest]
testpaths = tests/
norecursedirs = .tox
[bdist_wheel]
python-tag = py3
[metadata]
license_file = LICENSE