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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ junit/

# Quarto
/.quarto/
docs/.quarto/

# Website generation
_site
Expand All @@ -86,9 +87,14 @@ site

# Local data files
**/datafile/*
# Persistent storage should not be stored in git except for the markdown files
persistent_storage
!persistent_storage/**/*.md

# Python Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# We'll disable migrations for now, until we have actual users
migrations
11 changes: 5 additions & 6 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"jebbs.plantuml",
Expand All @@ -19,10 +18,10 @@
"vivaxy.vscode-conventional-commits",
"charliermarsh.ruff",
"pshaddel.conventional-branch",
"yy0931.vscode-sqlite3-editor"
"yy0931.vscode-sqlite3-editor",
"junstyle.vscode-django-support",
"monosans.djlint"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [

]
}
"unwantedRecommendations": []
}
13 changes: 11 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"editor.tabSize": 2,
"editor.wordWrap": "off",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"git.autofetch": false,
"quarto.visualEditor.markdownWrap": "column",
"quarto.visualEditor.markdownWrapColumn": 72,
Expand All @@ -23,5 +26,11 @@
"conventional-branch.format": "{Type}/{Branch}",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
},
"[html][django-html]": {
"editor.defaultFormatter": "monosans.djlint"
},
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.languageServer": "Pylance",
"files.insertFinalNewline": true
}