mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-09-01 23:47:15 +00:00
Bumps the pre-commit-dependencies group with 3 updates: [https://github.com/astral-sh/ruff-pre-commit](https://github.com/astral-sh/ruff-pre-commit), [https://github.com/tox-dev/pyproject-fmt](https://github.com/tox-dev/pyproject-fmt) and [https://github.com/AleksaC/hadolint-py](https://github.com/AleksaC/hadolint-py). Updates `https://github.com/astral-sh/ruff-pre-commit` from v0.16.1 to 0.16.4 - [Release notes](https://github.com/astral-sh/ruff-pre-commit/releases) - [Commits](https://github.com/astral-sh/ruff-pre-commit/compare/v0.16.1...v0.16.4) Updates `https://github.com/tox-dev/pyproject-fmt` from v2.26.0 to 2.28.1 - [Release notes](https://github.com/tox-dev/pyproject-fmt/releases) - [Commits](https://github.com/tox-dev/pyproject-fmt/compare/v2.26.0...v2.28.1) Updates `https://github.com/AleksaC/hadolint-py` from v2.14.0 to 2.15.1 - [Commits](https://github.com/AleksaC/hadolint-py/compare/v2.14.0...v2.15.1) --- updated-dependencies: - dependency-name: https://github.com/astral-sh/ruff-pre-commit dependency-version: 0.16.4 dependency-type: direct:production dependency-group: pre-commit-dependencies - dependency-name: https://github.com/tox-dev/pyproject-fmt dependency-version: 2.28.1 dependency-type: direct:production dependency-group: pre-commit-dependencies - dependency-name: https://github.com/AleksaC/hadolint-py dependency-version: 2.15.1 dependency-type: direct:production dependency-group: pre-commit-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
# This file configures pre-commit hooks.
|
|
# See https://pre-commit.com/ for general information
|
|
# See https://pre-commit.com/hooks.html for a listing of possible hooks
|
|
# We actually run via https://github.com/j178/prek which is compatible
|
|
repos:
|
|
# General hooks
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: check-docstring-first
|
|
- id: check-json
|
|
exclude: "tsconfig.*json"
|
|
- id: check-yaml
|
|
args:
|
|
- "--unsafe"
|
|
- id: check-toml
|
|
- id: check-executables-have-shebangs
|
|
- id: end-of-file-fixer
|
|
exclude_types:
|
|
- svg
|
|
- pofile
|
|
exclude: "(^LICENSE$|^src/documents/static/bootstrap.min.css$)"
|
|
- id: mixed-line-ending
|
|
args:
|
|
- "--fix=lf"
|
|
- id: trailing-whitespace
|
|
exclude_types:
|
|
- svg
|
|
- id: check-case-conflict
|
|
- id: detect-private-key
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.3
|
|
hooks:
|
|
- id: codespell
|
|
additional_dependencies: [tomli]
|
|
exclude_types:
|
|
- pofile
|
|
- json
|
|
# See https://github.com/prettier/prettier/issues/15742 for the fork reason
|
|
- repo: https://github.com/rbubley/mirrors-prettier
|
|
rev: 'v3.9.6'
|
|
hooks:
|
|
- id: prettier
|
|
types_or:
|
|
- javascript
|
|
- ts
|
|
- markdown
|
|
additional_dependencies:
|
|
- prettier@3.9.6
|
|
- 'prettier-plugin-organize-imports@4.3.0'
|
|
# Python hooks
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.16.4
|
|
hooks:
|
|
- id: ruff-check
|
|
- id: ruff-format
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
rev: "v2.28.1"
|
|
hooks:
|
|
- id: pyproject-fmt
|
|
additional_dependencies: [tomli]
|
|
# Dockerfile hooks
|
|
- repo: https://github.com/AleksaC/hadolint-py
|
|
rev: v2.15.1
|
|
hooks:
|
|
- id: hadolint
|
|
# Shell script hooks
|
|
- repo: https://github.com/lovesegfault/beautysh
|
|
rev: v6.4.3
|
|
hooks:
|
|
- id: beautysh
|
|
types: [file]
|
|
files: (\.sh$|/run$|/finish$)
|
|
args:
|
|
- "--tab"
|
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
|
rev: "v0.11.0.1"
|
|
hooks:
|
|
- id: shellcheck
|
|
- repo: https://github.com/google/yamlfmt
|
|
rev: v0.21.0
|
|
hooks:
|
|
- id: yamlfmt
|
|
exclude: "^src-ui/pnpm-lock.yaml"
|
|
types:
|
|
- yaml
|