Jun's Blog

Output, activities, memo and etc.

Entries from 2015-08-01 to 1 day

vimrc for Python development

I installed flake8 command by hacking module last time to do lint for Python code. such as "perl -c".Following vimrc setting means Individual vim settings for Python file (*.py). Run $ flake8 your_python_code.py by F1 in the Vim. Run $ pyt…

Install Python lint tools on Mac

Lint tools is the code format and style checker.Before I introduce one nice lint tools, I will introduce one easy way to check Python code. py_compile There is one easy way to check python code before running Python code. This comand is su…