Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 511 Bytes

File metadata and controls

23 lines (15 loc) · 511 Bytes

Python Tools

These tools are appropriate in all Python repositories.

Code Quality and Style Configuration

Install the following packages as dev dependencies:

  • flake8
  • mypy
  • black

Use the following configuration files:

  • .flake8
  • .mypy.ini - add other types as needed, for libraries that do not have type stubs available.

GitHub Actions