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,

}

原文地址:https://www.cnblogs.com/tianxujun/p/11377074.html