File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 - id : trailing-whitespace
1212 - id : end-of-file-fixer
1313 - id : check-yaml
14- - id : debug-statements
15- exclude : _pytest/(debugging|hookspec).py
16- language_version : python3
1714- repo : https://github.com/adamchainz/blacken-docs
1815 rev : 1.16.0
1916 hooks :
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ select = [
107107 " PLE" , # pylint error
108108 " PLW" , # pylint warning
109109 " PLR1714" , # Consider merging multiple comparisons
110+ " T100" , # flake8-debugger
110111]
111112ignore = [
112113 # bugbear ignore
Original file line number Diff line number Diff line change 11# mypy: allow-untyped-defs
2+ # ruff: noqa: T100
23"""Interactive debugging with PDB, the Python Debugger."""
34
45import argparse
Original file line number Diff line number Diff line change 11# mypy: allow-untyped-defs
2+ # ruff: noqa: T100
23"""Hook specifications for pytest plugins which are invoked by pytest itself
34and by builtin plugins."""
45
You can’t perform that action at this time.
0 commit comments