2021-05-27 15:10:58 +02:00
|
|
|
---
|
|
|
|
# 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
|
2022-11-23 22:17:28 +01:00
|
|
|
rev: v4.4.0
|
2021-05-27 15:10:58 +02:00
|
|
|
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
|
2021-05-27 15:10:58 +02:00
|
|
|
- id: check-toml
|
|
|
|
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: end-of-file-fixer
|
2022-09-19 11:58:31 +02:00
|
|
|
exclude: \.json$
|
2021-05-27 15:10:58 +02:00
|
|
|
- id: mixed-line-ending
|
2021-05-27 17:07:54 +02:00
|
|
|
args: [--fix=lf]
|
2021-05-27 15:10:58 +02:00
|
|
|
- id: trailing-whitespace
|
2022-09-09 16:57:22 +02:00
|
|
|
exclude: \.ambr$
|
2021-05-27 15:10:58 +02:00
|
|
|
|
|
|
|
- id: name-tests-test
|
2022-10-08 08:01:10 +02:00
|
|
|
exclude: ^api
|
2021-05-27 15:10:58 +02:00
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2022-06-16 14:40:14 +02:00
|
|
|
rev: v2.7.1
|
2021-05-27 15:10:58 +02:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2022-02-09 08:22:01 +01:00
|
|
|
files: \.(md|mdx|yml|yaml|js|jsx|ts|tsx|json|css)$
|
2022-08-10 13:38:19 +02:00
|
|
|
exclude: ^legacy/public(?!/js/airtime)
|
2021-05-27 15:10:58 +02:00
|
|
|
|
2022-01-25 23:45:00 +01:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2022-12-07 00:38:25 +01:00
|
|
|
rev: v3.3.1
|
2022-01-25 23:45:00 +01:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2022-09-09 20:21:59 +02:00
|
|
|
args: [--py38-plus]
|
2022-01-25 23:45:00 +01:00
|
|
|
|
2021-05-27 15:10:58 +02:00
|
|
|
- repo: https://github.com/psf/black
|
2022-12-09 18:32:07 +01:00
|
|
|
rev: 22.12.0
|
2021-05-27 15:10:58 +02:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2022-10-15 00:53:40 +02:00
|
|
|
rev: v2.2.2
|
2021-05-27 15:10:58 +02:00
|
|
|
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)$
|
2022-02-28 19:02:01 +01:00
|
|
|
|
|
|
|
- repo: local
|
|
|
|
hooks:
|
2022-10-05 08:27:15 +02:00
|
|
|
- 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]
|
|
|
|
|
2022-02-28 19:02:01 +01:00
|
|
|
- id: requirements.txt
|
|
|
|
name: requirements.txt
|
|
|
|
description: Generate requirements.txt
|
2022-07-17 18:51:58 +02:00
|
|
|
entry: tools/extract_requirements.py dev
|
2022-02-28 19:02:01 +01:00
|
|
|
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$
|
2022-09-19 11:58:31 +02:00
|
|
|
|
|
|
|
- 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
|