Skip to content

Commit

Permalink
creating initial devcontainer configuration (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
polatengin authored Sep 24, 2024
1 parent 9500e07 commit 01d0fc4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "tfx dev environment",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"features": {},
"postCreateCommand": "npm install",
"customizations": {
"vscode": {
"settings": {
"editor.formatOnSave": true
},
"extensions": [
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"GitHub.copilot",
"GitHub.copilot-chat",
"ms-vscode.js-debug-nightly",
"ms-vscode.vscode-typescript-next"
]
}
}
}
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

0 comments on commit 01d0fc4

Please sign in to comment.