2024-06-03 16:12:54 +03:00
|
|
|
{
|
|
|
|
"name": "Jekyll",
|
|
|
|
"image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye",
|
|
|
|
"onCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
|
|
|
|
"postCreateCommand": "bash .devcontainer/post-create.sh",
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"settings": {
|
2024-06-07 19:45:59 +03:00
|
|
|
"terminal.integrated.defaultProfile.linux": "zsh"
|
2024-06-03 16:12:54 +03:00
|
|
|
},
|
|
|
|
"extensions": [
|
|
|
|
// Liquid tags auto-complete
|
|
|
|
"killalau.vscode-liquid-snippets",
|
|
|
|
// Liquid syntax highlighting and formatting
|
|
|
|
"Shopify.theme-check-vscode",
|
|
|
|
// Shell
|
|
|
|
"timonwong.shellcheck",
|
|
|
|
"mkhl.shfmt",
|
|
|
|
// Common formatter
|
|
|
|
"EditorConfig.EditorConfig",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"stylelint.vscode-stylelint",
|
|
|
|
"yzhang.markdown-all-in-one",
|
|
|
|
// Git
|
|
|
|
"mhutchie.git-graph"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|