Newer
Older
netbox-docker / pyproject.toml
@Christian Mäder Christian Mäder on 9 Feb 2021 333 bytes Use black as formatter for python files
[tool.black]
line-length = 100
target-version = ['py38']
include = '\.pyi?$'
exclude = '''

(
  /(
      \.eggs         # exclude a few common directories in the
    | \.git          # root of the project
    | \.venv
    | \.netbox
    | \.vscode
    | configuration
  )/
)
'''

[tool.isort]
profile = "black"
multi_line_output = 3