Skip to content

Analyzers Page

Tarun Sharma edited this page Aug 29, 2024 · 1 revision

Analyzers

The Python Code Quality Analyzer includes the following analyzers:

  • Pylint: Checks for coding standard violations and potential errors.
  • Flake8: Enforces style guide compliance and checks for programming errors.
  • Bandit: Analyzes security issues in your code.
  • MyPy: Performs static type checking.
  • Isort: Ensures imports are sorted correctly.
  • Safety: Checks for known vulnerabilities in your dependencies.
  • Vulture: Identifies dead code.

You can enable or disable specific analyzers in the config.yaml file.

Clone this wiki locally