I am using python flymake with emacs, and want to turn off warnings per line. I am hoping for something like
apa(**kwdargs) # ignore=W0142
Does it exist?
I am using python flymake with emacs, and want to turn off warnings per line. I am hoping for something like
apa(**kwdargs) # ignore=W0142
Does it exist?
Copyright © 2021 Jogjafile Inc.
If you're using
pylintwithflymake, the syntax is# pylint: disable=W0142or# pylint: disable=star-args. I would recommend using the human readable version. If you install thepylintpackage (in melpa), you get a commandpylint-insert-ignore-comment, which makes it easy to insert such comments. Finally, newer versions ofpylinthave removed the star-args warning, so you might want to upgrade.