Make Your Code PEP8 Complaint


Quick Tip For Pythonistas - This is a short post.

To check if your code is pep8 compliant. In the root of your folder.

$ pip install pylint

$ find . -iname "*.py" | xargs pylint

Many text editors also support on the fly linting. My favourite is VSCODE with the python plugin. You can get auto formating of your code by setting up autopep8 on your vscode.