VsCode 添加忽略meta文件

文件 >> 首选项 >> 设置 >>   在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文件)