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

    },

    "tsimporter.filesToScan":[

        "**/*.ts",

        "**/*.tsx",

        "**/*.vue"

    ],

    "git.ignoreMissingGitWarning": true,

    "editor.multiCursorModifier": "ctrlCmd",

    "editor.snippetSuggestions": "top",

    "editor.formatOnPaste": true,

    "git.ignoreLegacyWarning": true,

    "csharp.format.enable": false,

    "editor.fontSize": 22,

    "workbench.colorTheme": "Monokai",

    "editor.autoIndent": "full",

    "window.zoomLevel": -1,

    "editor.codeActionsOnSave": {

        "source.fixAll": "explicit",

        "source.addMissingImports.ts": "explicit",

        // "source.removeUnusedImports": "explicit",

        "source.sortImports": "explicit",

    },

    "better-comments.tags": [

        {

            "tag": "!",

            "color": "#FF2D00",

            "strikethrough": false,

            "underline": false,

            "backgroundColor": "transparent",

            "bold": false,

            "italic": false

        },

        {

            "tag": "?",

            "color": "#3498DB",

            "strikethrough": false,

            "underline": false,

            "backgroundColor": "transparent",

            "bold": false,

            "italic": false

        },

        {

            "tag": "//",

            "color": "#474747",

            "strikethrough": true,

            "underline": false,

            "backgroundColor": "transparent",

            "bold": false,

            "italic": false

        },

        {

            "tag": "todo",

            "color": "#FF8C00",

            "strikethrough": false,

            "underline": false,

            "backgroundColor": "transparent",

            "bold": false,

            "italic": false

        },

        {

            "tag": "*",

            "color": "#98C379",

            "strikethrough": false,

            "underline": false,

            "backgroundColor": "transparent",

            "bold": false,

            "italic": false

        }

    ]

}

常用插件:https://mp.weixin.qq.com/s?__biz=MzU0NjgzMDIxMQ==&mid=2247631260&idx=2&sn=d4fc6239918cbf089e40bf57cb90c9b6&chksm=fa58f0831ab64d74c933d34a703f1235041dd23f1ed959e978a6053a7c479d82dd2004caee85&scene=27

版权声明:
作者:Alex
链接:https://www.techfm.club/p/218926.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>