在 sublime3 中,如何覆盖当前项目的 Anaconda 插件设置?

In sublime3, how to override Anaconda plugin settings for current project?

我使用 sublime 3 进行 python 编码,使用插件 Anaconda 进行格式检查。但是当我阅读别人的代码时,我不需要这个功能,因为整个文件充满了我不关心的格式错误,但 Anaconda lint 困扰着我。所以我想关闭这个 "project" (不是当前文件)的功能,我该怎么办?

您可以使用 anaconda_linting 设置控制状态 Anaconda linter。

"anaconda_linting": false

projects gives you more refined control where you want to use the linter and where not. For instance, you could disable the linter in your global settings and enable it for specific projects 合作。