Commit 5dba013f authored by Jan Reimes's avatar Jan Reimes
Browse files

chore(config): update format tasks in config.toml for consistency

* Adjusted task order for better readability.
* Ensured exclusion of .config directory in format tasks.
parent 050c40a7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{
  "database": "beads.db",
  "jsonl_export": "issues.jsonl"
  "jsonl_export": "issues.jsonl",
  "last_bd_version": "0.49.1"
}
 No newline at end of file
+4 −4
Original line number Diff line number Diff line
@@ -3,10 +3,10 @@ run = "mise tasks"

[tasks.format]
run = [
    "ruff format .",
    "isort .",
    "undersort .",
    "mdformat src/ docs/ tests/ --exclude .config/skills",
    "undersort src/ tests/ --exclude .config/",
    "isort src/ tests/",
    "ruff format src/ tests/ --exclude .config",
    "mdformat src/ docs/ tests/ --exclude .config/",
]

[tasks.lint]