style: add ruff ISC001 rule (#34493)

ISC001 doesn't conflict anymore with the formatter. See
https://github.com/astral-sh/ruff/issues/8272

Co-authored-by: Mason Daugherty <mason@langchain.dev>
This commit is contained in:
Christophe Bornet
2025-12-27 04:39:56 +01:00
committed by GitHub
parent 3d78cc69f1
commit d46187201d
4 changed files with 0 additions and 4 deletions

View File

@@ -88,7 +88,6 @@ ignore = [
"COM812", # Messes with the formatter
"CPY", # No copyright
"FIX002", # Line contains TODO
"ISC001", # Messes with the formatter
"PERF203", # Rarely useful
"PLR09", # Too many something (arg, statements, etc)
"RUF012", # Doesn't play well with Pydantic

View File

@@ -110,7 +110,6 @@ ignore = [
"COM812", # Messes with the formatter
"CPY", # No copyright
"FIX002", # Line contains TODO
"ISC001", # Messes with the formatter
"PERF203", # Rarely useful
"PLR09", # Too many something (arg, statements, etc)
"RUF012", # Doesn't play well with Pydantic

View File

@@ -67,7 +67,6 @@ ignore = [
"C90", # McCabe complexity
"COM812", # Messes with the formatter
"FIX002", # Line contains TODO
"ISC001", # Messes with the formatter
"PERF203", # Rarely useful
"PLR2004", # Magic numbers
"PLR09", # Too many something (arg, statements, etc)

View File

@@ -86,7 +86,6 @@ ignore = [
"COM812", # Messes with the formatter
"CPY", # No copyright
"FIX002", # Line contains TODO
"ISC001", # Messes with the formatter
"PERF203", # Rarely useful
"PLR09", # Too many something (arg, statements, etc)
"RUF012", # Doesn't play well with Pydantic