Skip to content

Commit bb7aa64

Browse files
authored
Configure Ruff to enforce unused imports and undefined names (#881)
1 parent c19d8f9 commit bb7aa64

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,10 @@ line-length = 120
122122

123123
[tool.ruff.lint]
124124
ignore = [
125-
"F401", # Unused imports
126125
"E712", # Comparison to True/False
127126
"E711", # Comparison to None
128127
"E722", # Bare except
129128
"E731", # Use lambda instead of def
130-
"F821", # Undefined names
131-
"F841", # Unused variables
132129
]
133130

134131
exclude = [

0 commit comments

Comments
 (0)