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-06-07 22:40:17 +02:00
|
|
|
rev: v4.3.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
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- id: name-tests-test
|
2021-05-28 01:11:28 +02:00
|
|
|
# TODO: Remove once the django api uses pytest
|
|
|
|
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-06-07 07:58:44 +02:00
|
|
|
rev: v2.34.0
|
2022-01-25 23:45:00 +01:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args: [--py3-plus, --py36-plus]
|
|
|
|
|
2021-05-27 15:10:58 +02:00
|
|
|
- repo: https://github.com/psf/black
|
2022-04-04 11:05:31 +02:00
|
|
|
rev: 22.3.0
|
2021-05-27 15:10:58 +02:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
|
2021-10-17 16:24:37 +02:00
|
|
|
# - repo: https://github.com/pycqa/isort
|
|
|
|
# rev: 5.9.3
|
|
|
|
# hooks:
|
|
|
|
# - id: isort
|
|
|
|
# args: ["--profile", "black", "--filter-files"]
|
2021-06-03 15:20:39 +02:00
|
|
|
|
2021-05-27 15:10:58 +02:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2021-08-17 22:45:24 +02:00
|
|
|
rev: v2.1.0
|
2021-05-27 15:10:58 +02:00
|
|
|
hooks:
|
|
|
|
- id: codespell
|
2021-08-17 22:49:55 +02:00
|
|
|
args:
|
|
|
|
- --ignore-words=.codespellignore
|
|
|
|
- --builtin=clear,rare,informal
|
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:
|
|
|
|
- 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$
|