tips.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Python Clean Code Tips & Tools | |
Check the quality of your code inside your CI pipeline. | |
- flake8 - style guide enforcer | |
- black - code formatting | |
- isort - optimize imports | |
- bandit - check for security vulnerabilities | |
- safety - check for security vulnerabilities of dependencies | |
Source: https://twitter.com/testdrivenio/status/1575160914135089152 |