40 lines
1.2 KiB
INI
40 lines
1.2 KiB
INI
[metadata]
|
|
description-file = README.md
|
|
license_file = LICENSE
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[isort]
|
|
default_section = THIRDPARTY
|
|
known_first_party = cleanupagents
|
|
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|
|
force_single_line = true
|
|
line_length = 120
|
|
skip_glob = **/.venv/*
|
|
|
|
[tool:pytest]
|
|
filterwarnings =
|
|
ignore::FutureWarning
|
|
ignore:.*collections.*:DeprecationWarning
|
|
ignore:.*pep8.*:FutureWarning
|
|
|
|
[flake8]
|
|
# Explanation of errors
|
|
#
|
|
# D100: Missing docstring in public module
|
|
# D101: Missing docstring in public class
|
|
# D102: Missing docstring in public method
|
|
# D103: Missing docstring in public function
|
|
# D105: Missing docstring in magic method
|
|
# D107: Missing docstring in __init__
|
|
# D202: No blank lines allowed after function docstring
|
|
# G001: Logging statements should not use string.format() for their first argument
|
|
# G004: Logging statements should not use f"..." for their first argument
|
|
# W503: Line break occurred before a binary operator
|
|
ignore = D100, D101, D102, D103, D105, D107, D202, G001, G004, W503
|
|
max-line-length = 200
|
|
inline-quotes = double
|
|
exclude = .git,.tox,__pycache__,build,dist,tests,*.pyc,*.egg-info,.cache,.eggs,env*
|
|
application-import-names = cleanupagents
|