👩💻 Join our community of thousands of amazing developers!
Just a quick post to let you know that I discarded my vim-pep8 and vim-pyflakes Vim plugins yesterday in favor of vim-flake8. As you may know, PyFlakes is a static analysis tool that lets you catch static programming errors when you write them, not when you run into them at runtime. And pep8 is a Python style checking tool that enforces PEP8 guidelines on your code. Flake8, though, seems to be a much better option to use these days. It integrates both of PEP8 and PyFlakes and even combines it wi...