Macho000

flake8のインストール

pip install flake8

VS Codeの既存のLintであるpylintを無効化する

Settingsをクリック

picture 2

linterを無効化する

検索窓でpython.linting.pylintEnabledと入力し検索 > Linting: PyLint Enabledを無効化 picture 3

flake8に設定する

検索窓でpython.linting.flake8Enabledと入力し検索 > Linting: Flake8 Enabledを無効化 picture 4

完了

これでソースファイル保存時にコードがPEP8に準拠しているか検証される

参考文献

https://qiita.com/fehde/items/723b619013dc86008acc

#Python