python - How do I disable flymake error for one line? -
i using python flymake emacs, , want turn off warnings per line. hoping like
apa(**kwdargs) # ignore=w0142
does exist?
if you're using pylint
flymake
, syntax # pylint: disable=w0142
or # pylint: disable=star-args
. recommend using human readable version. if install pylint
package (in melpa), command pylint-insert-ignore-comment
, makes easy insert such comments. finally, newer versions of pylint
have removed star-args warning, might want upgrade.
Comments
Post a Comment