Skip to content

Commit c4e0af2

Browse files
authored
refactor: 🔥 remove content not needed for data packages (#108)
# Description Removed anything that isn't needed for data packages. This PR needs a quick review. ## Checklist - [x] Ran `just run-all`
1 parent a79f65e commit c4e0af2

File tree

4 files changed

+0
-42
lines changed

4 files changed

+0
-42
lines changed

template/.vscode/google-notypes.mustache

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,3 @@ Yields:
3434
{{descriptionPlaceholder}}.
3535
{{/yields}}
3636
{{/yieldsExist}}
37-
38-
Examples:
39-
```{python}
40-
{{descriptionPlaceholder}}
41-
```

template/.vscode/json.code-snippets

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,6 @@
3131
],
3232
"description": "Insert bash formatted text"
3333
},
34-
"Insert YAML header for blogs": {
35-
"scope": "quarto,markdown",
36-
"prefix": "post_yaml",
37-
"body": [
38-
"---",
39-
"title: \"\"",
40-
"description: \"Our reasons for ...\"",
41-
"author: \"\"",
42-
"date: last-modified",
43-
"categories:",
44-
" ${0:Type 'category_keywords' to insert categories}",
45-
"---"
46-
],
47-
"description": "Insert YAML header for Quarto blog posts."
48-
},
4934
"Insert a hidden comment section": {
5035
"scope": "quarto,markdown",
5136
"prefix": "hidden",
@@ -76,14 +61,6 @@
7661
],
7762
"description": "Insert a 3 col table"
7863
},
79-
"Insert video": {
80-
"scope": "quarto,markdown",
81-
"prefix": "video",
82-
"body": [
83-
"{{< video ${0:Insert link here} >}}"
84-
],
85-
"description": "Insert video that will be shown"
86-
},
8764
"Insert paneltab": {
8865
"scope": "quarto,markdown",
8966
"prefix": "paneltab",

template/justfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Run all build-related recipes in the justfile
55
run-all: install-deps format-python check-python check-spelling check-commits build
66

7-
87
# List all TODO items in the repository
98
list-todos:
109
grep -R -n --exclude="*.code-snippets" "TODO" *

template/pyproject.toml.jinja

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,8 @@ readme = "README.md"
1616
license = "MIT AND "
1717
license-files = ["LICENSE-MIT.md", ""]
1818
requires-python = ">=3.12"
19-
dependencies = [
20-
"polars>=1.27.0",
21-
"seedcase-sprout>=0.46.3",
22-
]
23-
2419
{% if package_github_repo %}
2520
[project.urls]
2621
issues = "https://github.com/{{ package_github_repo }}/issues"
2722
repository = "https://github.com/{{ package_github_repo }}"
2823
{% endif %}
29-
30-
[dependency-groups]
31-
dev = [
32-
"commitizen>=4.5.1",
33-
"pre-commit>=4.2.0",
34-
"ruff>=0.11.4",
35-
"typos>=1.32.0",
36-
]

0 commit comments

Comments
 (0)