This week's focus is on code quality. This is where the code that we create is clear and uniform for the purposes of making it easier to maintain.
The ability to maintain code is very important as there are always bugs, security updates, features or simply a better way to write the code. Addition of a company wide shared library for instance.
These linters and tests can be automated of course. My favourite way is via pre commit Git Hook or a status check from Github to a jenkins job. This job the runs the linter and reports back the good or bad status.
Let me know how you get on with lint and checks.