-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpylama.ini
More file actions
19 lines (18 loc) · 833 Bytes
/
pylama.ini
File metadata and controls
19 lines (18 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[pylama]
# D105: Missing docstring in magic method
# D203: 1 blank line required before class docstring
# D213: Multi-line docstring summary should start at the second line
# To be removed:
# 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
# E128 continuation line under-indented for visual indent [pycodestyle]
# E124 closing bracket does not match visual indentation [pycodestyle]
# E203 whitespace before ':' [pycodestyle]
skip={toxworkdir}/*,build/*,.tox/*,.env/*,env/*,venv/*,versioneer.py,benchmark_zip_methods.py
ignore=D105,D203,D213,D100,D101,D102,D103,D104,W0611,E402,E128,E124,E203
linters=pycodestyle,pyflakes
[pylama:pycodestyle]
max_line_length = 120