mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-02-05 23:32:46 -06:00
* Chore(deps): Bump the utilities-minor group across 1 directory with 6 updates Bumps the utilities-minor group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [babel](https://github.com/python-babel/babel) | `2.17.0` | `2.18.0` | | [dateparser](https://github.com/scrapinghub/dateparser) | `1.2.2` | `1.3.0` | | [django-cachalot](https://github.com/noripyt/django-cachalot) | `2.8.0` | `2.9.0` | | [openai](https://github.com/openai/openai-python) | `2.15.0` | `2.16.0` | | [torch](https://github.com/pytorch/pytorch) | `2.9.1` | `2.10.0` | | [ruff](https://github.com/astral-sh/ruff) | `0.14.14` | `0.15.0` | Updates `babel` from 2.17.0 to 2.18.0 - [Release notes](https://github.com/python-babel/babel/releases) - [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst) - [Commits](https://github.com/python-babel/babel/compare/v2.17.0...v2.18.0) Updates `dateparser` from 1.2.2 to 1.3.0 - [Release notes](https://github.com/scrapinghub/dateparser/releases) - [Changelog](https://github.com/scrapinghub/dateparser/blob/master/HISTORY.rst) - [Commits](https://github.com/scrapinghub/dateparser/compare/v1.2.2...v1.3.0) Updates `django-cachalot` from 2.8.0 to 2.9.0 - [Release notes](https://github.com/noripyt/django-cachalot/releases) - [Changelog](https://github.com/noripyt/django-cachalot/blob/master/CHANGELOG.rst) - [Commits](https://github.com/noripyt/django-cachalot/compare/v2.8.0...v2.9.0) Updates `openai` from 2.15.0 to 2.16.0 - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v2.15.0...v2.16.0) Updates `torch` from 2.9.1 to 2.10.0 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.9.1...v2.10.0) Updates `ruff` from 0.14.14 to 0.15.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.14...0.15.0) --- updated-dependencies: - dependency-name: babel dependency-version: 2.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: utilities-minor - dependency-name: dateparser dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: utilities-minor - dependency-name: django-cachalot dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: utilities-minor - dependency-name: openai dependency-version: 2.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: utilities-minor - dependency-name: torch dependency-version: 2.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: utilities-minor - dependency-name: ruff dependency-version: 0.15.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: utilities-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updates to ruff 0.15.0 * Ignores all notes in the baseline. They seem to be problematic?? --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com>
85 lines
2.2 KiB
YAML
85 lines
2.2 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
|
|
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.1
|
|
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.8.1'
|
|
hooks:
|
|
- id: prettier
|
|
types_or:
|
|
- javascript
|
|
- ts
|
|
- markdown
|
|
additional_dependencies:
|
|
- prettier@3.3.3
|
|
- 'prettier-plugin-organize-imports@4.1.0'
|
|
# Python hooks
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.15.0
|
|
hooks:
|
|
- id: ruff-check
|
|
- id: ruff-format
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
rev: "v2.12.1"
|
|
hooks:
|
|
- id: pyproject-fmt
|
|
# Dockerfile hooks
|
|
- repo: https://github.com/AleksaC/hadolint-py
|
|
rev: v2.14.0
|
|
hooks:
|
|
- id: hadolint
|
|
# Shell script hooks
|
|
- repo: https://github.com/lovesegfault/beautysh
|
|
rev: v6.4.2
|
|
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
|