zoukankan      html  css  js  c++  java
  • Vue Config

    {
    // 控制键入时是否应自动显示建议
    "editor.quickSuggestions": {
    "other": true,
    "comments": false,
    "strings": true
    },
    // 终端在 Windows 使用的 shell 路径。使用随 Windows 一起提供的 shell (cmd、PowerShell 或 Bash on Ubuntu) 时。
    "terminal.integrated.shell.windows": "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe",
    // 控制搜索文件时是否使用 .gitignore 和 .ignore 文件。
    "search.useIgnoreFiles": true,
    // 针对 [git-commit] 语言,配置替代编辑器设置。
    "[git-commit]": {
    "editor.rulers": [
    72
    ]
    },
    // 是否启用自动拉取
    "git.autofetch": false,
    // 是否启用自动刷新
    "git.autorefresh": true,
    // 是否自动检测存储库
    "git.autoRepositoryDetection": true,
    // 控制运行“签出到...”功能时列出的分支类型。"all" 显示所有 refs,"local" 只显示本地分支,"tags" 只显示标签,"remote" 只显示远程分支。
    "git.checkoutType": "all",
    // 同步 GIT 存储库前请先进行确认
    "git.confirmSync": false,
    // 控制 Git 徽章计数器。“all”计算所有更改。“tracked”只计算跟踪的更改。“off”关闭此功能。
    "git.countBadge": "all",
    // 控制 Git 是否向资源管理器和“打开的编辑器”视图添加颜色和小标。
    "git.decorations.enabled": true,
    // 克隆 Git 存储库的默认位置
    "git.defaultCloneDirectory": "http://dev.xiaomaihulian.com:8080/DefaultCollection/mxjClient/_git/mxjweb",
    // 控制是否自动检测 Git 子模块。
    "git.detectSubmodules": true,
    // 启用使用 GPG 签名的提交
    "git.enableCommitSigning": false,
    // 是否启用 Git
    "git.enabled": true,
    // 在没有暂存的更改时提交所有更改。
    "git.enableSmartCommit": false,
    // 忽略旧版 Git 警告
    "git.ignoreLegacyWarning": false,
    // 忽略“存储库中存在大量更改”的警告
    "git.ignoreLimitWarning": false,
    // 忽略“缺失 Git”警告
    "git.ignoreMissingGitWarning": false,
    // 控制何时显示提交消息输入验证。
    "git.inputValidation": "warn",
    // Git 可执行文件路径
    "git.path": "D:/Program Files/Git/bin/git.exe",
    // 控制 Git 是否在提交之前检查未保存的文件。
    "git.promptToSaveFilesBeforeCommit": false,
    // 控制是否在 Git 更改视图中显示内联“打开文件”操作。
    "git.showInlineOpenFileAction": true,
    "window.zoomLevel": 0,
    "team.showWelcomeMessage": false,
    "search.followSymlinks": false,

    }

  • 相关阅读:
    《信息安全系统设计基础》实验一 开发环境的熟悉
    20145208 《信息安全系统设计基础》第七周学习总结
    20145208 《信息安全系统设计基础》第六周学习总结
    TCP基本概念
    UNP学习笔记1——基本TCP套接字编程
    C++内存分配方式——小结
    APUE学习笔记7——进程间通信
    哈希表的概念和简单的实现算法
    APUE学习笔记6——线程和线程同步
    C++面向对象的设计思想——小结
  • 原文地址:https://www.cnblogs.com/tianxujun/p/11377074.html
Copyright © 2011-2022 走看看