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
8 changes: 8 additions & 0 deletions .cz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tool.commitizen]
version = "0.3.1"
bump_message = "build(version): :bookmark: update version from $current_version to $new_version [skip ci]"
version_schema = "semver"
version_provider = "commitizen"
update_changelog_on_bump = true
# Don't regenerate the changelog on every update
changelog_incremental = true
40 changes: 1 addition & 39 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
_ignore
bin/
dev/
_temp/

# Temporary files
*.tmp
Expand All @@ -26,53 +27,14 @@ venv
__pycache__/
*.py[cod]

# Python packaging and distribution
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Python testing and code coverage
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# MacOS
.DS_Store

# Quarto
/.quarto/
docs/.quarto/
*.ipynb
*.quarto_ipynb
*.storage

# Quartodoc
/docs/reference/
objects.json

# Website generation
Expand Down
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ ci:
autoupdate_commit_msg: "ci(pre-commit): :construction_worker: update pre-commit CI version"

repos:
- repo: https://github.com/gitleaks/gitleaks
rev: v8.27.2
hooks:
- id: gitleaks

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
Expand Down
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"recommendations": [
"eamodio.gitlens",
"github.vscode-github-actions",
"GitHub.vscode-github-actions",
"redhat.vscode-yaml",
"donjayamanne.githistory",
"felipecaputo.git-project-manager",
Expand All @@ -15,7 +15,8 @@
"charliermarsh.ruff",
"pshaddel.conventional-branch",
"tekumara.typos-vscode",
"EditorConfig.EditorConfig"
"EditorConfig.EditorConfig",
"samuelcolvin.jinjahtml"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
Expand Down
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@
"chore", // Misc things, like renaming or deleting files
],
"conventional-branch.format": "{Type}/{Branch}",
"[quarto][qmd]": {
"[quarto][qmd][jinja]": {
"editor.formatOnSave": false
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"files.associations": {
"*.cff.jinja": "jinja-yaml",
"*.toml.jinja": "jinja-toml"
},
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.languageServer": "Pylance",
"files.insertFinalNewline": true
Expand Down
Loading