fix: correct indentation for pylint, Code Formatters and Refactoring

This commit is contained in:
Ankita Ghosh 2026-05-11 15:28:23 +05:30 committed by GitHub
parent e75e91cb91
commit 52bbc91825
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -603,12 +603,11 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome-
- [bandit](https://github.com/PyCQA/bandit) - A tool designed to find common security issues in Python code.
- [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe.
- [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions)
- [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer.
- [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer.
- Code Formatters
- [black](https://github.com/psf/black) - The uncompromising Python code formatter.
- [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports.
- [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter.
- Refactoring
- [rope](https://github.com/python-rope/rope) - Rope is a python refactoring library.
- Type Checkers - [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing)