Skip to content

Commit

Permalink
Fix pyproject sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
trottomv committed Jan 12, 2024
1 parent b963866 commit e011a15
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,6 @@
[tool.black]
target-version = ["py312"]

[tool.coverage.html]
title = "Talos - Coverage"
show_contexts = true

[tool.coverage.report]
show_missing = true

[tool.coverage.run]
branch = true
dynamic_context = "test_function"
omit = [
".venv/*",
"venv/*",
]
source = ["."]

[tool.mypy]
enable_error_code = [
"truthy-bool",
]
ignore_missing_imports = true
python_version = "3.12"

[tool.ruff]
extend-exclude = [
"__pycache__",
Expand Down Expand Up @@ -66,3 +43,26 @@ combine-as-imports = true
known-first-party = [
"bootstrap",
]

[tool.coverage.html]
title = "Talos - Coverage"
show_contexts = true

[tool.coverage.report]
show_missing = true

[tool.coverage.run]
branch = true
dynamic_context = "test_function"
omit = [
".venv/*",
"venv/*",
]
source = ["."]

[tool.mypy]
enable_error_code = [
"truthy-bool",
]
ignore_missing_imports = true
python_version = "3.12"

0 comments on commit e011a15

Please sign in to comment.