Stylising your Python code: An introduction to linting and formatting
https://xkcd.com/1513
Linting is a process for identifying bugs and stylistic errors in your code. The process is carried out by analysis tools called ‘linters’, which are widely available for every major programming language. Linters will flag issues and style violations in your code, sort of like a spell ...
[...Read more...]