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
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"extensions": [
"astral-sh.ty",
"charliermarsh.ruff",
"dorzey.vscode-sqlfluff",
"exiasr.hadolint",
"kevinrose.vsc-python-indent",
"mosapride.zenkaku",
Expand All @@ -42,6 +41,7 @@
"njpwerner.autodocstring",
"redhat.vscode-yaml",
"shardulm94.trailing-spaces",
"sqlfluff.vscode-sqlfluff",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"yzhang.markdown-all-in-one"
Expand All @@ -52,7 +52,7 @@
"DISPLAY": "dummy",
"UV_PROJECT_ENVIRONMENT": "${containerWorkspaceFolder}/.venv"
},
"updateContentCommand": "sudo chown -R vscode /home/${remoteUser}/.cache /home/${remoteUser}/.ssh ${containerWorkspaceFolder}/.venv",
"updateContentCommand": "sudo chown -R vscode /home/vscode/.cache /home/vscode/.ssh ${containerWorkspaceFolder}/.venv",
"postCreateCommand": "uv sync --frozen",
"postStartCommand": "uv run pre-commit install"
}
1 change: 0 additions & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"dmypy",
"dockerfiles",
"donotpresent",
"dorzey",
"exiasr",
"fastapi",
"fontawesome",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"astral-sh.ty",
"charliermarsh.ruff",
"codezombiech.gitignore",
"dorzey.vscode-sqlfluff",
"eamodio.gitlens",
"exiasr.hadolint",
"kevinrose.vsc-python-indent",
Expand All @@ -17,6 +16,7 @@
"pkief.material-icon-theme",
"redhat.vscode-yaml",
"shardulm94.trailing-spaces",
"sqlfluff.vscode-sqlfluff",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"usernamehw.errorlens",
Expand Down
31 changes: 5 additions & 26 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"editor.autoIndent": "advanced",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"notebook.codeActionsOnSave": {
Expand All @@ -25,36 +28,19 @@
}
},
"[dockercompose]": {
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.tabSize": 4
},
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker",
"editor.formatOnSave": true
"editor.tabSize": 4
},
"[github-actions-workflow]": {
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.insertSpaces": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.tabSize": 2
},
"[json][jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[python]": {
Expand All @@ -63,25 +49,18 @@
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.tabSize": 4
},
"[sql]": {
"editor.defaultFormatter": "dorzey.vscode-sqlfluff",
"editor.formatOnSave": true,
"editor.defaultFormatter": "sqlfluff.vscode-sqlfluff",
"editor.tabSize": 2
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[yaml]": {
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
}
}
2 changes: 1 addition & 1 deletion docs/configurations/uv.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Set the `UV_PROJECT_ENVIRONMENT` not to create a virtual environment in the proj
"extensions": [
"astral-sh.ty",
"charliermarsh.ruff",
"dorzey.vscode-sqlfluff",
"exiasr.hadolint",
"kevinrose.vsc-python-indent",
"mosapride.zenkaku",
Expand All @@ -51,6 +50,7 @@ Set the `UV_PROJECT_ENVIRONMENT` not to create a virtual environment in the proj
"njpwerner.autodocstring",
"redhat.vscode-yaml",
"shardulm94.trailing-spaces",
"sqlfluff.vscode-sqlfluff",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"yzhang.markdown-all-in-one"
Expand Down
Loading