You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
409 B

[tool.black]
line-length = 120
target-version = ['py37', 'py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
include_trailing_comma = true
multi_line_output = 3
[tool.flake8]
max-line-length = 120
max-complexity = 18
ignore = "E203,E266,W503,"
filename = "backend/*"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
show_error_codes = true
exclude = "(migrations)|(app/settings.py)"