langchain-ollama[patch]: Add ruff bandit rules to linter (#31811)

- Add ruff bandit rules
This commit is contained in:
Mason Daugherty 2025-07-01 14:16:07 -04:00 committed by GitHub
parent c9e1ce2966
commit d0dce5315f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,6 +54,7 @@ select = [
"T201", # print
"D", # pydocstyle
"UP", # pyupgrade
"S", # flake8-bandit
]
ignore = [ "UP007", ]
@ -72,3 +73,9 @@ markers = [
"compile: mark placeholder test used to compile integration tests without running them",
]
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
]