美文网首页
VsCode 添加忽略meta文件

VsCode 添加忽略meta文件

作者: Lennie_S | 来源:发表于2020-11-09 10:17 被阅读0次

文件 >> 首选项 >> 设置 >>   在settings.json 中编辑

settings.json 中添加如下配置

{

    "files.exclude": {

    "**/.git": true,

    "**/.svn": true,

    "**/.hg": true,

    "**/CVS": true,

    "**/.DS_Store": true,

    "**/*.meta":true

    },

    "search.exclude": {

    "**/node_modules": true,

    "**/bower_components": true,

    "**/.git": true,

    "**/.svn": true,

    "**/*.meta":true

    },

        "git.ignoreMissingGitWarning": true,

        "sublimeTextKeymap.promptV3Features": true,

        "editor.multiCursorModifier": "ctrlCmd",

        "editor.snippetSuggestions": "top",

        "editor.formatOnPaste": true,

        "git.ignoreLegacyWarning": true,

        "csharp.format.enable": false,

        "terminal.integrated.shell.windows": "F:\\Git\\bin\\bash.exe",

        "editor.fontSize": 18,

        "workbench.colorTheme": "Monokai",

        "editor.autoIndent": false,

        "files.exclude": {

        "**/*.meta": true

        },

        "window.zoomLevel": -1,

        "editor.codeActionsOnSave": null

}

相关文章

网友评论

      本文标题:VsCode 添加忽略meta文件

      本文链接:https://www.haomeiwen.com/subject/enclbktx.html