diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6c328c7..b6ff35e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ ci: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.1.0 + rev: v4.5.0 hooks: # list of supported hooks: https://pre-commit.com/hooks.html - id: trailing-whitespace @@ -17,7 +17,7 @@ repos: # python code formatting/linting - repo: https://github.com/PyCQA/pydocstyle - rev: 6.1.1 + rev: 6.3.0 hooks: - id: pydocstyle args: @@ -27,7 +27,7 @@ repos: "graph_weather", ] - repo: https://github.com/PyCQA/flake8 - rev: 4.0.1 + rev: 6.1.0 hooks: - id: flake8 args: @@ -40,19 +40,19 @@ repos: "graph_weather", ] - repo: https://github.com/PyCQA/isort - rev: 5.10.1 + rev: 5.13.2 hooks: - id: isort args: [--profile, black, --line-length, "100", "graph_weather"] - repo: https://github.com/psf/black - rev: 22.1.0 + rev: 23.12.1 hooks: - id: black args: [--line-length, "100"] # yaml formatting - repo: https://github.com/pre-commit/mirrors-prettier - rev: v2.5.1 + rev: v4.0.0-alpha.8 hooks: - id: prettier types: [yaml]