Skip to content

Commit 4f5987a

Browse files
mroeschkeYi Wei
authored and
Yi Wei
committed
STY: Enable more ruff checks (pandas-dev#53082)
1 parent 2a08d71 commit 4f5987a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pyproject.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,12 @@ select = [
208208
"B",
209209
# flake8-quotes
210210
"Q",
211+
# flake8-debugger
212+
"T10",
213+
# flake8-gettext
214+
"INT",
211215
# pylint
212-
"PLE", "PLR", "PLW",
216+
"PLC", "PLE", "PLR", "PLW",
213217
# misc lints
214218
"PIE",
215219
# flake8-pyi
@@ -273,6 +277,8 @@ ignore = [
273277
"PLW0603",
274278
# Docstrings should not be included in stubs
275279
"PYI021",
280+
# compare-to-empty-string
281+
"PLC1901",
276282
# Use typing_extensions.TypeAlias for type aliases
277283
# "PYI026", # not yet implemented
278284
# Use "collections.abc.*" instead of "typing.*" (PEP 585 syntax)

0 commit comments

Comments
 (0)