Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 emacs 的 python flymake,并且想关闭每行的警告。我希望有类似的东西
apa(**kwdargs) # ignore=W0142
它存在吗?
如果您使用pylintwith flymake,则语法为# pylint: disable=W0142or # pylint: disable=star-args。我建议使用人类可读的版本。如果你安装pylint包(在 melpa 中),你会得到一个命令pylint-insert-ignore-comment,它可以很容易地插入这样的注释。最后,较新的版本pylint已经删除了 star-args 警告,所以你可能想要升级。
pylint
flymake
# pylint: disable=W0142
# pylint: disable=star-args
pylint-insert-ignore-comment