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