netbox-docker/pyproject.toml

27 lines
359 B
TOML
Raw Permalink Normal View History

[tool.black]
2021-02-08 11:59:57 +01:00
line_length = 100
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
2021-02-08 11:59:57 +01:00
\.git
| \.venv
| \.netbox
| \.vscode
| configuration
)/
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
2021-02-08 11:59:57 +01:00
line_length = 100
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "100"