Include a linter and/or style checker into the developer toolchain. The goal is to enhance code quality and ease code reviews by:
- checking for violations of coding/style conventions
- checking for avoidable programming errors and bad practices
Add a check.py script with a return code of 0 if the unit tests and linting succeed, 1 otherwise.
Include a linter and/or style checker into the developer toolchain. The goal is to enhance code quality and ease code reviews by:
Add a
check.pyscript with a return code of0if the unit tests and linting succeed,1otherwise.