diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 019cec0..acef1e9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,8 @@ repos: rev: v5.0.0 hooks: - id: check-added-large-files - args: ["--maxkb=500"] + args: + - --maxkb=500 - id: check-case-conflict - id: check-xml - id: check-yaml @@ -13,40 +14,51 @@ 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/Lucas-C/pre-commit-hooks rev: v1.5.5 hooks: - id: remove-tabs - args: ["--whitespaces-count", "4"] + args: + - --whitespaces-count + - "4" - repo: https://github.com/astral-sh/ruff-pre-commit rev: "v0.8.1" hooks: - id: ruff - args: ["--fix-only", "--target-version=py39"] + args: + - --fix-only + - --target-version=py312 - repo: https://github.com/psf/black rev: 24.10.0 hooks: - id: black - args: ["--target-version=py39"] + args: + - --target-version=py312 - repo: https://github.com/pycqa/isort 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.1 hooks: - id: flake8 files: ^qgis_resource_sharing/.*\.py$ - additional_dependencies: ["flake8-qgis<2"] + additional_dependencies: + - "flake8-qgis" args: [ "--config=setup.cfg",