忽略 SublimeLinter 中的 flake8 警告
Ignore flake8 warning in SublimeLinter
我已经安装了 SublimeLinter-flake8. I would like to exclude the W191 warning when I am using SublimeLinter with flake8
. I have checked the SublimeLinter docs 并尝试将 "--ignore W191"
添加到我的用户设置文件并重新加载了插件,但我仍然收到关于标签使用的警告。
以下是我的Packages/User/SublimeLinter.sublime-settings
文件。
// SublimeLinter Settings - User
{
"linters": {
"linter_name" : {
"args" : "--ignore W191"
}
}
}
我检查了 this answer on Whosebug 但我希望从设置文件中应用它。
linter_name
必须是您要配置的特定插件(在本例中为 flake8
)——试试这个:
{
"linters": {
"flake8" : {
"args" : "--ignore W191"
}
}
}
虽然实际上,最好在 flake8's configuration 中配置 flake8 设置,这样您的项目的贡献者就可以在您的项目上工作而无需您的特定 sublimetext 设置。我相信如果我正确阅读他们的代码,sublimetext 对 flake8 的调用应该与这些配置兼容
免责声明:虽然我不确定它在这里是否超级相关,但我目前维护 flake8
我已经安装了 SublimeLinter-flake8. I would like to exclude the W191 warning when I am using SublimeLinter with flake8
. I have checked the SublimeLinter docs 并尝试将 "--ignore W191"
添加到我的用户设置文件并重新加载了插件,但我仍然收到关于标签使用的警告。
以下是我的Packages/User/SublimeLinter.sublime-settings
文件。
// SublimeLinter Settings - User
{
"linters": {
"linter_name" : {
"args" : "--ignore W191"
}
}
}
我检查了 this answer on Whosebug 但我希望从设置文件中应用它。
linter_name
必须是您要配置的特定插件(在本例中为 flake8
)——试试这个:
{
"linters": {
"flake8" : {
"args" : "--ignore W191"
}
}
}
虽然实际上,最好在 flake8's configuration 中配置 flake8 设置,这样您的项目的贡献者就可以在您的项目上工作而无需您的特定 sublimetext 设置。我相信如果我正确阅读他们的代码,sublimetext 对 flake8 的调用应该与这些配置兼容
免责声明:虽然我不确定它在这里是否超级相关,但我目前维护 flake8