You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"PLC2701", # Private name import from external module # https://github.com/astral-sh/ruff/issues/15294 and https://github.com/astral-sh/ruff/issues/15295
200
+
"S105", # Possible hardcoded password assigned
201
+
"S106", # Possible hardcoded password assigned to argument
202
+
"S107", # Possible hardcoded password assigned to function default
203
203
"S3", # Use of insecure ...
204
204
# Most pep8-naming rules don't apply for third-party stubs like typeshed.
205
205
# N811 to N814 could apply, but we often use them to disambiguate a name whilst making it look like a more common one
206
206
"N8",
207
-
"PIE796", # Enum contains duplicate value # astral-sh/ruff#15132
208
-
"PLC2701", # Private name import from external module
209
-
"PLW1641", # Object does not implement __hash__ method
210
-
"S105", # Possible hardcoded password assigned
211
-
"S106", # Possible hardcoded password assigned to argument
212
-
"S107", # Possible hardcoded password assigned to function default
213
-
"S4", # Insecure and vulnerable libraries
214
207
# Stubs can sometimes re-export entire modules.
215
208
# Issues with using a star-imported name will be caught by type-checkers.
216
209
"F405", # may be undefined, or defined from star imports
0 commit comments