File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ lint.ignore = [
20
20
" E741" , # Ambiguous variable name.
21
21
]
22
22
23
-
24
23
[tool .ruff .lint .per-file-ignores ]
25
24
"examples/*" = [" UP031" , " T201" ] # Print allowed in examples.
26
25
"src/prompt_toolkit/application/application.py" = [" T100" , " T201" , " F821" ] # pdb and print allowed.
@@ -31,8 +30,7 @@ lint.ignore = [
31
30
"src/prompt_toolkit/filters/__init__.py" = [" F403" , " F405" ] # Possibly undefined due to star import.
32
31
"src/prompt_toolkit/filters/cli.py" = [" F403" , " F405" ] # Possibly undefined due to star import.
33
32
"src/prompt_toolkit/shortcuts/progress_bar/formatters.py" = [" UP031" ] # %-style formatting.
34
- "src/*" = [" UP032" ] # f-strings instead of format calls.
35
-
33
+ "src/*" = [" UP031" , " UP032" ] # f-strings instead of format calls.
36
34
37
35
[tool .ruff .lint .isort ]
38
36
known-first-party = [" prompt_toolkit" ]
You can’t perform that action at this time.
0 commit comments