mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 10:50:09 +00:00
* fix: check new types idea * fix: type errors * fix: new style * fix: more cleanup * fix: more cleanup * fix: cleanup audit logs * fix: cleanup stickers * fix: cleanup integrations * fix: more cleanup * fix: organize into 1 place * fix: few errors * fix: some broken import fixes * fix: quite a lot of fixes across the board * fix: more fixes for broken imports * fix: more fixes for broken imports * fix: handler imports * fix: all remaining import errors * fix: more errors needing fixes * fix: clearing up transformers * fix: few moer types * fix: more cleanup of extra types * fix: fmt * fix: cleanup discordeno file * Nuke Base Types (#2102) * fix: cleanup snake stuff * convert camelCase to snake_case (#2103) * fix: add camelize * fix: finalize remaining errors * fix: imports in test Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com>
43 lines
1.8 KiB
JSON
43 lines
1.8 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.162.0/containers/deno
|
|
{
|
|
"name": "Deno",
|
|
"dockerFile": "Dockerfile",
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "/bin/bash",
|
|
"deno.enable": true,
|
|
"editor.defaultFormatter": "denoland.vscode-deno",
|
|
"editor.minimap.enabled": false,
|
|
"editor.wordWrap": "on",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
"source.fixAll": true
|
|
},
|
|
"editor.fontSize": 16,
|
|
"workbench.colorTheme": "Material Theme Darker",
|
|
"workbench.iconTheme": "eq-material-theme-icons-darker",
|
|
"breadcrumbs.enabled": true,
|
|
"editor.renderWhitespace": "all",
|
|
"editor.suggestSelection": "first",
|
|
"editor.formatOnSave": true,
|
|
"files.autoSave": "afterDelay",
|
|
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"javascript.updateImportsOnFileMove.enabled": "always"
|
|
},
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"denoland.vscode-deno",
|
|
"pkief.material-icon-theme",
|
|
"equinusocio.vsc-material-theme",
|
|
"tabnine.tabnine-vscode"
|
|
],
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
// Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker.
|
|
// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ],
|
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "vscode"
|
|
}
|