diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9668066..578e91c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,19 @@ }, // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [6080, 5901], + "forwardPorts": [ + 6080, + 5901 + ], + "customizations": { + "vscode": { + "extensions": [ + "streetsidesoftware.code-spell-checker", + "EditorConfig.EditorConfig", + "dbaeumer.vscode-eslint" + ] + } + }, // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "yarn install", diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..29eb506 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + "recommendations": [ + "streetsidesoftware.code-spell-checker", + "editorconfig.editorconfig", + "dbaeumer.vscode-eslint" + ] +} \ No newline at end of file