2020-08-18 13:10:09 +00:00
|
|
|
[isort]
|
|
|
|
default_section = THIRDPARTY
|
|
|
|
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|
|
|
|
force_single_line = true
|
|
|
|
line_length = 99
|
2021-02-19 12:38:30 +00:00
|
|
|
skip_glob = **/.venv*,**/venv/*,**/docs/*,**/inventory/*,**/modules/*
|
2020-08-18 13:10:09 +00:00
|
|
|
|
|
|
|
[yapf]
|
|
|
|
based_on_style = google
|
|
|
|
column_limit = 99
|
|
|
|
dedent_closing_brackets = true
|
|
|
|
coalesce_brackets = true
|
|
|
|
split_before_logical_operator = true
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
filterwarnings =
|
|
|
|
ignore::FutureWarning
|
|
|
|
ignore:.*collections.*:DeprecationWarning
|
|
|
|
ignore:.*pep8.*:FutureWarning
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
omit =
|
|
|
|
**/test/*
|
2021-02-19 12:38:30 +00:00
|
|
|
**/.venv/*
|
2021-03-27 13:10:42 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
ignore = D101, D102, D103, D105, D107, D202, E402, W503, B902
|
|
|
|
max-line-length = 99
|
|
|
|
inline-quotes = double
|
|
|
|
exclude =
|
|
|
|
.git
|
|
|
|
.tox
|
|
|
|
__pycache__
|
|
|
|
build
|
|
|
|
dist
|
|
|
|
test
|
|
|
|
*.pyc
|
|
|
|
*.egg-info
|
|
|
|
.cache
|
|
|
|
.eggs
|
|
|
|
env*
|
|
|
|
iptables_raw.py
|