Skip to content

Commit fc983de

Browse files
chore: 🔥 remove unnecessary code
Co-authored-by: Luke W. Johnston <[email protected]>
1 parent 54573da commit fc983de

File tree

5 files changed

+11
-49
lines changed

5 files changed

+11
-49
lines changed

template/.vscode/extensions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@
1818
"tekumara.typos-vscode",
1919
"EditorConfig.EditorConfig"
2020
],
21-
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
2221
"unwantedRecommendations": []
2322
}

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/.vscode/launch.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
52
"version": "0.2.0",
63
"configurations": [
74
{

template/.vscode/python.code-snippets

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
11
{
2-
// Place your snippets for python here. Each snippet is defined under a snippet name and has a prefix, body and
3-
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
4-
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
5-
// same ids are connected.
6-
// Example:
7-
// "Print to console": {
8-
// "prefix": "log",
9-
// "body": [
10-
// "console.log('$1');",
11-
// "$2"
12-
// ],
13-
// "description": "Log output to console"
14-
// }
152
"Insert a Python test": {
163
"prefix": "test-gwt",
174
"body": [

template/.vscode/settings.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@
1212
"editor.tabCompletion": "on",
1313
"editor.snippetSuggestions": "inline",
1414
"conventional-branch.type": [
15-
"build", // Changes that affect the build system or external dependencies
16-
"ci", // Changes to our CI configuration files and scripts
17-
"docs", // Documentation only changes
18-
"feat", // A new feature
19-
"fix", // A bug fix
20-
"refactor", // A code change that neither fixes a bug nor adds a feature
21-
"style", // Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
22-
"test", // Adding missing tests or correcting existing tests
23-
"chore", // Misc things, like renaming or deleting files
15+
"build",
16+
"ci",
17+
"docs",
18+
"feat",
19+
"fix",
20+
"refactor",
21+
"style",
22+
"test",
23+
"chore",
24+
"perf",
25+
"revert"
2426
],
2527
"conventional-branch.format": "{Type}/{Branch}",
2628
"[quarto][qmd]": {

0 commit comments

Comments
 (0)