2020-05-29 12:37:35 +02:00
|
|
|
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
|
|
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/docker-existing-dockerfile
|
|
|
|
{
|
2020-06-05 13:54:40 +00:00
|
|
|
"name": "Existing Dockerfile",
|
|
|
|
"dockerFile": "./Dockerfile",
|
|
|
|
"settings": {
|
2020-06-12 19:31:10 +00:00
|
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"[php]": {
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
},
|
2020-08-04 11:25:22 +00:00
|
|
|
"phpSniffer.autoDetect": true,
|
2020-06-12 19:31:10 +00:00
|
|
|
"color-highlight.markerType": "dot-before"
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
|
|
|
"extensions": [
|
2020-07-28 15:57:48 +00:00
|
|
|
"mikestead.dotenv",
|
|
|
|
"bmewburn.vscode-intelephense-client",
|
|
|
|
"streetsidesoftware.code-spell-checker",
|
|
|
|
"naumovs.color-highlight",
|
|
|
|
"heybourn.headwind",
|
|
|
|
"wayou.vscode-todo-highlight",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"bradlc.vscode-tailwindcss",
|
|
|
|
"jamesbirtles.svelte-vscode",
|
|
|
|
"dbaeumer.vscode-eslint",
|
2020-08-04 11:25:22 +00:00
|
|
|
"stylelint.vscode-stylelint",
|
|
|
|
"wongjn.php-sniffer"
|
2020-07-28 15:57:48 +00:00
|
|
|
]
|
2020-06-05 13:54:40 +00:00
|
|
|
}
|