Skip to content

Commit 0b67929

Browse files
committed
Enable additional ruff lint rules (W, LOG, DTZ, FLY, ISC)
Add five new rule sets that pass cleanly without any code changes: pycodestyle warnings, flake8-logging, flake8-datetimez, flynt, and flake8-implicit-str-concat.
1 parent 3c03719 commit 0b67929

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ select = [
5353
"ASYNC",
5454
# pycodestyle
5555
"E",
56+
"W",
5657
# Pyflakes
5758
"F",
5859
# pyupgrade
@@ -75,6 +76,14 @@ select = [
7576
"N",
7677
# flake8-pytest-style
7778
"PT",
79+
# flake8-logging
80+
"LOG",
81+
# flake8-datetimez
82+
"DTZ",
83+
# flynt
84+
"FLY",
85+
# flake8-implicit-str-concat
86+
"ISC",
7887
]
7988
ignore = ["E501"] # Line too long
8089

0 commit comments

Comments
 (0)