12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "name": "Ladybird",
- "image": "mcr.microsoft.com/devcontainers/base:noble",
-
- "features": {
- "ghcr.io/devcontainers/features/github-cli:1": {},
- "ghcr.io/devcontainers-contrib/features/pre-commit:2": {},
- "./features/ladybird": {
- "llvm_version": 19
- },
- "./features/vcpkg-cache": {
- "release_triplet": true,
-
- "debug_triplet": false,
- "sanitizer_triplet": false
- },
- "ghcr.io/devcontainers/features/desktop-lite": {
- "password": "vscode",
- "webPort": "6080",
- "vncPort": "5901"
- }
- },
-
- "forwardPorts": [
- 6080,
- 5901
- ],
- "portsAttributes": {
- "5901": {
- "label": "VNC"
- },
- "6080": {
- "label": "Web VNC"
- }
- },
-
- "postCreateCommand": "pre-commit install; pre-commit install --hook-type commit-msg",
-
- "customizations": {
- "vscode": {
- "extensions": [
- "ms-vscode.cmake-tools",
- "llvm-vs-code-extensions.vscode-clangd",
- "eamodio.gitlens"
- ],
- "settings": {
-
- "files.exclude": {
- "**/.git": true,
- "Toolchain/Local/**": true,
- "Toolchain/Tarballs/**": true,
- "Toolchain/Build/**": true,
- "Build/**": true
- },
- "search.exclude": {
- "**/.git": true,
- "Toolchain/Local/**": true,
- "Toolchain/Tarballs/**": true,
- "Toolchain/Build/**": true,
- "Build/**": true
- },
-
- "editor.tabSize": 4,
- "editor.useTabStops": false,
-
- "files.trimFinalNewlines": true,
- "files.insertFinalNewline": true,
-
- "git.inputValidationLength": 72,
- "git.inputValidationSubjectLength": 72,
-
-
- "clangd.path": "clangd-19",
- "clangd.arguments": [
- "--header-insertion=never"
- ]
- }
- }
- }
-
-
- }
|