2021-02-08 11:59:33 +01:00
|
|
|
[tool.black]
|
2021-02-08 11:59:57 +01:00
|
|
|
line_length = 100
|
2021-02-08 11:59:33 +01:00
|
|
|
target-version = ['py38']
|
|
|
|
include = '\.pyi?$'
|
|
|
|
exclude = '''
|
|
|
|
(
|
|
|
|
/(
|
2021-02-08 11:59:57 +01:00
|
|
|
\.git
|
2021-02-08 11:59:33 +01:00
|
|
|
| \.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"
|