Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 442 Bytes

dj_black_isort_coverage.md

File metadata and controls

28 lines (24 loc) · 442 Bytes

Project configuration for black, isort and coverage

pyproject.toml:

[tool.black]
line-length = 79
force-exclude = "migrations"

[tool.isort]
profile = "black"
filter_files = true
line_length = 79
skip_glob = ["*/migrations/*", "config/*"]

[tool.coverage.run]
omit = [
  "manage.py",
  "*/__init__.py",
  "*/settings.py",
  "*/migrations/*",
  "*/apps.py",
  "*/tests/*",
  "*/tests.py",
  "*/factories/*",
  "*/admin.py",
]