File tree 4 files changed +10
-12
lines changed 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,7 @@ repos:
10
10
hooks :
11
11
- id : trailing-whitespace
12
12
- id : end-of-file-fixer
13
- - id : fix-encoding-pragma
14
- args : [--remove]
15
13
- id : check-yaml
16
- - id : debug-statements
17
- exclude : _pytest/(debugging|hookspec).py
18
- language_version : python3
19
14
- repo : https://github.com/adamchainz/blacken-docs
20
15
rev : 1.16.0
21
16
hooks :
@@ -50,13 +45,13 @@ repos:
50
45
additional_dependencies : ["tox>=4.9"]
51
46
- repo : local
52
47
hooks :
53
- - id : pylint
54
- name : pylint
55
- entry : pylint
56
- language : system
57
- types : [python]
58
- args : ["-rn", "-sn", "--fail-on=I"]
59
- stages : [manual]
48
+ - id : pylint
49
+ name : pylint
50
+ entry : pylint
51
+ language : system
52
+ types : [python]
53
+ args : ["-rn", "-sn", "--fail-on=I"]
54
+ stages : [manual]
60
55
- id : rst
61
56
name : rst
62
57
entry : rst-lint --encoding utf-8
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ select = [
107
107
" PLE" , # pylint error
108
108
" PLW" , # pylint warning
109
109
" PLR1714" , # Consider merging multiple comparisons
110
+ " T100" , # flake8-debugger
110
111
]
111
112
ignore = [
112
113
# bugbear ignore
Original file line number Diff line number Diff line change 1
1
# mypy: allow-untyped-defs
2
+ # ruff: noqa: T100
2
3
"""Interactive debugging with PDB, the Python Debugger."""
3
4
4
5
import argparse
Original file line number Diff line number Diff line change 1
1
# mypy: allow-untyped-defs
2
+ # ruff: noqa: T100
2
3
"""Hook specifications for pytest plugins which are invoked by pytest itself
3
4
and by builtin plugins."""
4
5
You can’t perform that action at this time.
0 commit comments