Skip to content

Commit 7e7fd4e

Browse files
chore(sync): 🔨 synced file(s) with seedcase-project/template-data-package
1 parent af6d302 commit 7e7fd4e

File tree

7 files changed

+65
-412
lines changed

7 files changed

+65
-412
lines changed

.cz.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[tool.commitizen]
2+
version = "0.3.0"
3+
bump_message = "build(version): :bookmark: update version from $current_version to $new_version [skip ci]"
4+
version_schema = "semver"
5+
version_provider = "commitizen"
6+
update_changelog_on_bump = true
7+
# Don't regenerate the changelog on every update
8+
changelog_incremental = true

.gitignore

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
_ignore
33
bin/
44
dev/
5+
_temp/
56

67
# Temporary files
78
*.tmp
@@ -26,53 +27,14 @@ venv
2627
__pycache__/
2728
*.py[cod]
2829

29-
# Python packaging and distribution
30-
.Python
31-
build/
32-
develop-eggs/
33-
dist/
34-
downloads/
35-
eggs/
36-
.eggs/
37-
lib/
38-
lib64/
39-
parts/
40-
sdist/
41-
var/
42-
wheels/
43-
share/python-wheels/
44-
*.egg-info/
45-
.installed.cfg
46-
*.egg
47-
MANIFEST
48-
49-
# Python testing and code coverage
50-
htmlcov/
51-
.tox/
52-
.nox/
53-
.coverage
54-
.coverage.*
55-
.cache
56-
nosetests.xml
57-
coverage.xml
58-
*.cover
59-
*.py,cover
60-
.hypothesis/
61-
.pytest_cache/
62-
cover/
63-
6430
# MacOS
6531
.DS_Store
6632

6733
# Quarto
6834
/.quarto/
6935
docs/.quarto/
70-
*.ipynb
71-
*.quarto_ipynb
72-
*.storage
7336

7437
# Quartodoc
75-
/docs/reference/
7638
objects.json
7739

7840
# Website generation

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ ci:
55
autoupdate_commit_msg: "ci(pre-commit): :construction_worker: update pre-commit CI version"
66

77
repos:
8+
- repo: https://github.com/gitleaks/gitleaks
9+
rev: v8.27.2
10+
hooks:
11+
- id: gitleaks
12+
813
- repo: https://github.com/pre-commit/pre-commit-hooks
914
rev: v5.0.0
1015
hooks:

.vscode/extensions.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"recommendations": [
33
"eamodio.gitlens",
4-
"github.vscode-github-actions",
4+
"GitHub.vscode-github-actions",
55
"redhat.vscode-yaml",
66
"donjayamanne.githistory",
77
"felipecaputo.git-project-manager",
@@ -15,7 +15,8 @@
1515
"charliermarsh.ruff",
1616
"pshaddel.conventional-branch",
1717
"tekumara.typos-vscode",
18-
"EditorConfig.EditorConfig"
18+
"EditorConfig.EditorConfig",
19+
"samuelcolvin.jinjahtml"
1920
],
2021
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
2122
"unwantedRecommendations": []

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,16 @@
2323
"chore", // Misc things, like renaming or deleting files
2424
],
2525
"conventional-branch.format": "{Type}/{Branch}",
26-
"[quarto][qmd]": {
26+
"[quarto][qmd][jinja]": {
2727
"editor.formatOnSave": false
2828
},
2929
"[python]": {
3030
"editor.defaultFormatter": "charliermarsh.ruff"
3131
},
32+
"files.associations": {
33+
"*.cff.jinja": "jinja-yaml",
34+
"*.toml.jinja": "jinja-toml"
35+
},
3236
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
3337
"python.languageServer": "Pylance",
3438
"files.insertFinalNewline": true

0 commit comments

Comments
 (0)