Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/linters/.megalinter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Configuration file for MegaLinter
# See all available variables at https://megalinter.io/configuration/ and in linters documentation
# See all available variables at https://megalinter.io/latest/config-file/ and in linters documentation

DISABLE:
- PYTHON
Expand Down
12 changes: 7 additions & 5 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,18 @@
extractVersion: "^(?<version>v?\\d+\\.\\d+\\.\\d+)$",
versioning: "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$",
},
// Disable github-actions minimum release age for our own actions.
// Group github-actions dependencies in a single PR.
{
groupName: "Dependencies for github-actions",
matchManagers: ["github-actions"],
matchPackageNames: ["daniel-mizsak/workflows"],
minimumReleaseAge: null,
},
// Group github-actions dependencies in a single PR.
// Group self-owned github-actions dependencies in a single PR.
{
groupName: "Dependencies for github-actions",
groupName: "Dependencies for github-actions under daniel-mizsak/workflows",
matchManagers: ["github-actions"],
matchPackageNames: ["daniel-mizsak/workflows"],
minimumReleaseAge: null,
schedule: ["* 0-5 * * *"], // Daily before 6am.
},
// Group pep621 dependencies in a single PR.
{
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clean:
htmlcov \
megalinter-reports \
.venv
find . -name ".DS_Store" -type f -delete
find . -type f -name ".DS_Store" -delete
find . -type d -name "__pycache__" -exec rm -r {} +

[group("lifecycle")]
Expand Down
7 changes: 1 addition & 6 deletions zensical.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,13 @@
"content.code.copy",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"search.highlight",
"search.suggest",
]
# Palette toggle for automatic mode
[[project.theme.palette]]
media = "(prefers-color-scheme)"
toggle.icon = "lucide/sun-moon"
toggle.name = "Switch to light mode"

# Palette toggle for light mode
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
Expand Down