-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (17 loc) · 775 Bytes
/
setup.cfg
File metadata and controls
21 lines (17 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[pycodestyle]
max-line-length = 100
[pylava]
linters = pydocstyle,pycodestyle,pylint,radon
skip = build,dist,docs,.*,.*/*,**/.* # all files and directories starting with a dot: .tox, .env, etc
# Ignores are mostly "missing docstring" reports.
#
# Because I believe that docstrings are only needed for public functions/methods.
# In other places they're harmful:
# - for private functions/methods it is much better to have verbose function names
# - for whole modules and packages, it is much better to put docs in separate .rst files
# So, in most cases I don't have docstrings, and so I'm suppressing these warnings below.
ignore=D100,D101,D103,D104,D105,D107,D203,D213,C0114,C0115,C0116
[pylava:pycodestyle]
max_line_length = 100
[pylava:pylint]
max_line_length = 100