Kotlin環境サンプル
Kotlinでの環境サンプルです。最新のJDKだとKotlinのみ動かない場合があるので注意してください。
{
"name": "Kotlin",
"image": "mcr.microsoft.com/devcontainers/java:21-bookworm",
"features": {
// "ghcr.io/devcontainers/features/java:1": {
// "version": "none",
// "installMaven": "true",
// "installGradle": "false"
// },
// "ghcr.io/devcontainers/features/docker-in-docker:3": {}
},
"customizations": {
"vscode": {
"settings": {
"editor.formatOnSave": true,
"editor.inlayHints.enabled": "off",
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
"extensions": ["jetbrains.kotlin-server"]
}
}
}