Skip to content

afonasev/flake8-breakpoint

Repository files navigation

flake8-breakpoint

pypi Python: 3.6+ Downloads Build Status Code coverage License: MIT Code style: black

Flake8 plugin that check forgotten breakpoints.

Installation

pip install flake8-breakpoint

Errors

  • B601 builtin function "breakpoint" found
def function():
    breakpoint()  # error!
  • B602 import of debug module found
def function():
    import pdb  # error! or ipdb/pudb

License

MIT

Change Log

Unreleased

  • ...

1.1.0 - 2019-05-23

  • update flask_plugin_utils version to 1.0

1.0.0 - 2019-04-02

  • initial

About

Flake8 plugin that check forgotten breakpoints

Resources

License

Stars

Watchers

Forks