diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index eb99c70e..fc1f38c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,8 @@ repos: rev: v4.6.0 hooks: - id: check-added-large-files - args: ["--maxkb=500"] + args: + - --maxkb=500 - id: check-case-conflict - id: check-xml - id: check-yaml @@ -13,21 +14,26 @@ repos: - id: end-of-file-fixer - id: fix-byte-order-marker - id: fix-encoding-pragma - args: [--remove] + args: + - --remove - id: trailing-whitespace - args: [--markdown-linebreak-ext=md] + args: + - --markdown-linebreak-ext=md - repo: https://github.com/astral-sh/ruff-pre-commit rev: "v0.5.0" hooks: - id: ruff - args: ["--fix-only", "--target-version=py39"] + args: + - --fix-only + - --target-version=py39 - repo: https://github.com/psf/black rev: 24.4.2 hooks: - id: black - args: ["--target-version=py39"] + args: + - --target-version=py39 # Disabled until PyQt translation support f-strings # - repo: https://github.com/asottile/pyupgrade @@ -41,7 +47,10 @@ repos: rev: 5.13.2 hooks: - id: isort - args: ["--profile", "black", "--filter-files"] + args: + - --profile + - black + - --filter-files - repo: https://github.com/pycqa/flake8 rev: 7.1.0 @@ -49,8 +58,8 @@ repos: - id: flake8 language: python files: ^qtribu/.*\.py$ - types: [python] - additional_dependencies: ["flake8-qgis"] + additional_dependencies: + - "flake8-qgis" args: [ "--config=setup.cfg", diff --git a/requirements/documentation.txt b/requirements/documentation.txt index badcafb3..9ff8fe78 100644 --- a/requirements/documentation.txt +++ b/requirements/documentation.txt @@ -6,5 +6,5 @@ sphinx-autobuild>=2024 sphinx-autodoc-typehints>=1.25 sphinx-copybutton>=0.5,<1 sphinxext-opengraph>=0.7 -sphinx-rtd-theme>=1,<3 +sphinx-rtd-theme>=1,<4 sphinx-sitemap>=2.5.1