Skip to content

Commit

Permalink
Add bandit to code review (#1051)
Browse files Browse the repository at this point in the history
* docs: add bandit info

* add: fix semantic
  • Loading branch information
ShakutaiGit authored May 16, 2024
1 parent 8e49801 commit 92ec0da
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/code-reviews/recipes/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,16 @@ Format python code
yapf [file/folder] --in-place
```

### Bandit

[Bandit](https://github.com/PyCQA/bandit) is a tool designed by the Python Code Quality Authority (PyCQA) to perform static analysis of Python code, specifically targeting security issues.
It scans for common security issues in Python codebase.

- **Installation**: Add Bandit to your development environment with:
```bash
pip install bandit
```

## VS Code Extensions

### Python
Expand Down

0 comments on commit 92ec0da

Please sign in to comment.