Update pre-commit hooks (#2777)
* Add missing pydantic dependencies to pre-commit mypy hook * Add pylint to pre-commit checks
This commit is contained in:
parent
83ece36ec3
commit
0f4e76f142
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue