VsCode 添加忽略meta文件

2020-11-09  本文已影响0人  Lennie_S

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

}

上一篇下一篇

猜你喜欢

热点阅读