阅读

Visual Studio Code(vscode)配置

software  2022-10-14 16:46


 用户配置

// Place your settings in this file to overwrite the default settings
{
    // 在后台下载和安装新的 VS Code 版本
    "update.enableWindowsBackgroundUpdates": false,

    // 更新后显示发行说明
    "update.showReleaseNotes": false,

    // 自动接收更新
    "update.mode": "none",

    // 自动检查扩展更新
    "extensions.autoCheckUpdates": false,

    // 扩展自动更新
    "extensions.autoUpdate": false,

    // 是否启用了 GIT
    "git.enabled": false,

    // 控制编辑器中呈现空白字符的方式,可能为“无”、“边界”和“全部”。“边界”选项不会在单词之间呈现单空格。
    "editor.renderWhitespace": "all",
    
    // 将在保存文件时删除行尾的空格
    "files.trimTrailingWhitespace": true,

    // 保存文件时将删除在最终新行后的所有新行
    "files.trimFinalNewlines": true
}