mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-07 12:06:43 +00:00
core: ruff encoding rule preview
This commit is contained in:
parent
b298d0337e
commit
078f73f3f8
@ -73,13 +73,16 @@ select = [
|
|||||||
"TID",
|
"TID",
|
||||||
"UP",
|
"UP",
|
||||||
"W",
|
"W",
|
||||||
"YTT"
|
"YTT",
|
||||||
|
"PLW1514",
|
||||||
]
|
]
|
||||||
ignore = [
|
ignore = [
|
||||||
"COM812", # Messes with the formatter
|
"COM812", # Messes with the formatter
|
||||||
"UP007", # Incompatible with pydantic + Python 3.9
|
"UP007", # Incompatible with pydantic + Python 3.9
|
||||||
"W293", #
|
"W293", #
|
||||||
]
|
]
|
||||||
|
preview = true
|
||||||
|
explicit-preview-rules = true
|
||||||
|
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
omit = [ "tests/*",]
|
omit = [ "tests/*",]
|
||||||
|
Loading…
Reference in New Issue
Block a user