在 pylint.el 文件中,我找到了定义:
(defcustom pylint-options '("--reports=n" "--output-format=parseable")
"Options to pass to pylint.py"
:type '(repeat string)
:group 'pylint)
我尝试了 .emacs 文件:
(setq pylint-options "--some-option")
当我尝试在Emacs中运行pylint时出现错误。
答案 0 :(得分:1)
命令需要一个字符串列表,而不仅仅是一个字符串。
就像那样:
(setq pylint-options '("--some-option"))