pylintの設定ファイルを作成して, 書き込む.

pylintでみたくないエラーがでたりする際のために

pylintrcの作成

普通に自分でpylintrcファイルを作ってもうまくいかなかった. pylintのコマンドで作れるみたい.

Terminal
pylint --generate-rcfile > ~/.config/pylintrc

このファイルを覗いたらわかるが, やまほど設定項目がある. 私が今回足したのは, いくつかのエラーを無視する項目と, 不適切な変数名と警告が出ないようにする設定.

~/.config/pylintrc
disable=
raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
missing-module-docstring,
fixme


# Good variable names which should always be accepted, separated by a comma.
good-names=i,
           j,
           k,
           ex,
           Run,
           _,
           df,
           x1,
           x2,
           x3,
           x4

この記事のTOP    BACK    TOP