Skip to content

Commit

Permalink
feat: add GitHub Copilot VS Code extension (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Dec 20, 2024
1 parent 561e89b commit 8b3dc1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"vscode": {
"extensions": [
"DavidAnson.vscode-markdownlint",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"ms-azuretools.vscode-docker",
"ms-python.python",
"tamasfe.even-better-toml",
Expand All @@ -20,7 +24,8 @@
"editor.rulers": [
100
],
"files.autoSave": "onFocusChange"
"files.autoSave": "onFocusChange",
"github.copilot.chat.edits.enabled": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"vscode": {
"extensions": [
"charliermarsh.ruff",
"GitHub.copilot",
"GitHub.copilot-chat",
{%- if cookiecutter.continuous_integration == "GitHub" %}
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
Expand Down Expand Up @@ -43,6 +45,7 @@
100
],
"files.autoSave": "onFocusChange",
"github.copilot.chat.edits.enabled": true,
"jupyter.kernels.excludePythonEnvironments": ["/usr/local/bin/python"],
"mypy-type-checker.importStrategy": "fromEnvironment",
"mypy-type-checker.preferDaemon": true,
Expand Down

0 comments on commit 8b3dc1b

Please sign in to comment.