mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-02 11:39:18 +00:00
langchain-ollama[patch]: Add ruff bandit rules to linter (#31811)
- Add ruff bandit rules
This commit is contained in:
@@ -54,6 +54,7 @@ select = [
|
|||||||
"T201", # print
|
"T201", # print
|
||||||
"D", # pydocstyle
|
"D", # pydocstyle
|
||||||
"UP", # pyupgrade
|
"UP", # pyupgrade
|
||||||
|
"S", # flake8-bandit
|
||||||
]
|
]
|
||||||
ignore = [ "UP007", ]
|
ignore = [ "UP007", ]
|
||||||
|
|
||||||
@@ -72,3 +73,9 @@ markers = [
|
|||||||
"compile: mark placeholder test used to compile integration tests without running them",
|
"compile: mark placeholder test used to compile integration tests without running them",
|
||||||
]
|
]
|
||||||
asyncio_mode = "auto"
|
asyncio_mode = "auto"
|
||||||
|
|
||||||
|
[tool.ruff.lint.extend-per-file-ignores]
|
||||||
|
"tests/**/*.py" = [
|
||||||
|
"S101", # Tests need assertions
|
||||||
|
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
|
||||||
|
]
|
Reference in New Issue
Block a user