libretime/.pre-commit-config.yaml

121 lines
3.3 KiB
YAML
Raw Permalink Normal View History

---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: destroyed-symlinks
- id: check-json
- id: check-yaml
2021-10-11 17:11:14 +02:00
- id: check-xml
- id: check-toml
- id: check-merge-conflict
- id: end-of-file-fixer
exclude: \.json$
- id: mixed-line-ending
2021-05-27 17:07:54 +02:00
args: [--fix=lf]
- id: trailing-whitespace
exclude: \.ambr$
- id: name-tests-test
2022-10-08 08:01:10 +02:00
exclude: ^api
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
files: \.(md|mdx|yml|yaml|js|jsx|ts|tsx|json|css)$
exclude: ^(legacy/public(?!/js/airtime)|CHANGELOG.md$|.github/release-please-manifest.json)
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
hooks:
- id: pyupgrade
2022-09-09 20:21:59 +02:00
args: [--py38-plus]
- repo: https://github.com/adamchainz/django-upgrade
chore(deps): update pre-commit hook adamchainz/django-upgrade to v1.22.2 (#3119) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [adamchainz/django-upgrade](https://redirect.github.com/adamchainz/django-upgrade) | repository | patch | `1.22.1` -> `1.22.2` | Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://redirect.github.com/renovatebot/renovate/discussions/new) if you have any questions. --- ### Release Notes <details> <summary>adamchainz/django-upgrade (adamchainz/django-upgrade)</summary> ### [`v1.22.2`](https://redirect.github.com/adamchainz/django-upgrade/blob/HEAD/CHANGELOG.rst#1222-2024-12-02) [Compare Source](https://redirect.github.com/adamchainz/django-upgrade/compare/1.22.1...1.22.2) - Make these fixers work when `django.contrib.gis.db.models` is used to import objects from `django.db.models`: - `check_constraint_condition` - `index_together` `Issue #&#8203;513 <https://github.com/adamchainz/django-upgrade/issues/513>`\__. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/libretime/libretime). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-04 11:22:41 +01:00
rev: 1.22.2
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
2023-02-02 19:37:49 +01:00
- repo: https://github.com/pycqa/isort
rev: 5.13.2
2023-02-02 19:37:49 +01:00
hooks:
- id: isort
args: [--resolve-all-configs]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
2022-10-08 08:01:10 +02:00
args: [--ignore-words=.codespellignore]
2022-06-17 17:07:26 +02:00
exclude: (^api/schema.yml|^legacy.*|yarn\.lock)$
- repo: local
hooks:
- id: shfmt
name: shfmt
language: docker_image
entry: mvdan/shfmt -i 2 -ci -sr -kp -w
types: [shell]
- id: shellcheck
name: shellcheck
language: docker_image
entry: koalaman/shellcheck --color=always --severity=warning
types: [shell]
- id: requirements.txt
name: requirements.txt
description: Generate requirements.txt
2023-02-26 23:24:29 +01:00
entry: tools/extract_requirements.py dev sentry
pass_filenames: false
language: script
files: setup.py$
2022-09-07 19:14:08 +02:00
- id: config.yml
name: config.yml
description: Update config files
entry: tools/update-config-files.sh
pass_filenames: false
language: script
files: ^installer/config.yml$
- id: legacy-migrations-version
name: legacy-migrations-version
description: Ensure valid schema version for migrations
entry: tools/legacy-migrations-version.sh
pass_filenames: false
language: script
files: ^api/libretime_api/legacy/migrations
- id: legacy-assets-checksum-update
name: legacy-assets-checksum-update
description: Update legacy assets checksum
entry: legacy/tools/assets-checksum-update.py
pass_filenames: false
language: script
files: ^legacy
- id: api-schema-update
name: api-schema-update
description: Ensure API schema is up to date
entry: make -C api schema
pass_filenames: false
language: system
files: ^api