Skip to content
Open
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
3 changes: 3 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM mcr.microsoft.com/devcontainers/typescript-node:22

RUN apt-get update && apt-get install -y --no-install-recommends vim bash-completion
37 changes: 37 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"EditorConfig.EditorConfig",
"GitHub.vscode-pull-request-github",
"Gruntfuggly.todo-tree",
"ambooth.git-rename",
"bierner.markdown-mermaid",
"dbaeumer.vscode-eslint",
"exiasr.hadolint",
"firsttris.vscode-jest-runner",
"github.vscode-github-actions",
"mhutchie.git-graph",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"vivaxy.vscode-conventional-commits",
"waderyan.gitblame",
"yoavbls.pretty-ts-errors"
],
"settings": {
// Ensure correct node version
"eslint.runtime": "/usr/local/bin/node"
}
}
},
"features": {
"ghcr.io/dhoeric/features/hadolint:1": {}
},
"name": "DevContainer",
"onCreateCommand": "npm install",
"postCreateCommand": "echo \"PATH=\"${PATH}:${PWD}/node_modules/.bin\"\" >> ~/.bashrc"
}
24 changes: 0 additions & 24 deletions .eslintignore

This file was deleted.

Loading
Loading