Skip to content

Commit

Permalink
Enhance devcontainer configuration with additional settings and exten…
Browse files Browse the repository at this point in the history
…sions
  • Loading branch information
tjorim committed Jan 4, 2025
1 parent dea83d9 commit 950a62b
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,24 @@
"vscode": {
"extensions": [
"charliermarsh.ruff",
"github.vscode-pull-request-github",
"ms-python.python"
]
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": false,
"files.trimTrailingWhitespace": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"python.defaultInterpreterPath": "/usr/local/bin/python",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
}
}
},
"remoteUser": "vscode"
}

0 comments on commit 950a62b

Please sign in to comment.