Skip to content

Commit f292c3e

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 825b6b7 commit f292c3e

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
@@ -73,6 +74,14 @@ select = [
7374
"C4",
7475
# pep8-naming
7576
"N",
77+
# flake8-logging
78+
"LOG",
79+
# flake8-datetimez
80+
"DTZ",
81+
# flynt
82+
"FLY",
83+
# flake8-implicit-str-concat
84+
"ISC",
7685
]
7786
ignore = ["E501"] # Line too long
7887

0 commit comments

Comments
 (0)