We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2802a4 commit 306de6aCopy full SHA for 306de6a
.ruff.toml
@@ -3,7 +3,6 @@ line-length = 100
3
extend-exclude = ["temp"]
4
5
6
-
7
lint.select = [
8
"E", # pycodestyle errors
9
"W", # pycodestyle warnings
@@ -30,10 +29,11 @@ lint.ignore = [
30
29
'F401', # unused imports
31
'F841',
32
'SIM102',
+ #'SIM103', # needless-bool, return the condition {condition} directly
33
'SIM105',
34
'SIM108',
35
'SIM115',
36
- 'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z
+# 'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z
37
]
38
39
[format]
0 commit comments