diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b97a7a170..3c0acdd70 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,19 @@ repos: hooks: - id: mypy fail_fast: true + additional_dependencies: + - pydantic + - pydantic-settings - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.7.2 hooks: - id: ruff + - repo: local + hooks: + - id: pylint + name: pylint + entry: pylint + language: system + types: [python] + fail_fast: true + require_serial: true