如何在VScode中过滤.pyc文件

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/BearKChan/article/details/78758541

工作区设置里添加如下代码:

{
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/*.pyc": true,
        "**/.DS_Store": true
    }
}

猜你喜欢

转载自blog.csdn.net/BearKChan/article/details/78758541