Development environment

From Izara Wiki
Revision as of 00:44, 9 March 2023 by Sven the Barbarian (talk | contribs) (Created page with "= VS Code settings = <syntaxhighlight lang="json"> { "telemetry.enableTelemetry": false, "telemetry.enableCrashReporter": false, "gitlens.gitCommands.closeOnFocusOut": true, "git.enableSmartCommit": true, "editor.hover.delay": 1200, "gitlens.gitCommands.skipConfirmations": [ "fetch:command", "stash-push:command", "switch:command", "push:command" ], "gitlens.views.repositories.branches.layout": "list", "git...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

VS Code settings

{
    "telemetry.enableTelemetry": false,
    "telemetry.enableCrashReporter": false,
    "gitlens.gitCommands.closeOnFocusOut": true,
	"git.enableSmartCommit": true,
    "editor.hover.delay": 1200,
    "gitlens.gitCommands.skipConfirmations": [
        "fetch:command",
        "stash-push:command",
        "switch:command",
        "push:command"
    ],
    "gitlens.views.repositories.branches.layout": "list",
    "gitlens.views.repositories.files.layout": "list",
    "workbench.activityBar.visible": true,
    "workbench.editor.openPositioning": "last",
    "workbench.statusBar.visible": true,
    "editor.tabSize": 2,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "diffEditor.ignoreTrimWhitespace": false,
    "explorer.confirmDelete": false,
    "files.autoSave": "afterDelay",
    "editor.formatOnSave": true,
    "editor.dragAndDrop": false,
    "timeline.excludeSources": [],
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "git.confirmSync": false
}