flake8
Python のコーディングスタイルが合ってるか確認してくれるツール
https://pypi.org/project/flake8/
プラグイン機構で、チェック項目を増やせる
デフォルトでpyflakesをインストールし、チェックする
デフォルトでpycodestyleをインストールし、チェックする
デフォルトでmccabeをインストールし、チェックする?
エラーメッセージの種類で、だれが出してるエラーか見分けられる
E: pycodestyle (ERROR) https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
W: pycodestyle (WARNING) https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
F: pyflakes http://flake8.pycqa.org/en/latest/user/error-codes.html
C: mccabe http://flake8.pycqa.org/en/latest/user/error-codes.html