1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00
svtplay-dl/.pre-commit-config.yaml

34 lines
879 B
YAML
Raw Normal View History

2019-08-25 00:27:31 +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
2024-11-08 10:32:04 +01:00
rev: v5.0.0
2019-08-25 00:27:31 +02:00
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/ambv/black
rev: 24.3.0
2019-08-25 00:27:31 +02:00
hooks:
- id: black
language_version: python3
2022-11-21 14:27:49 +01:00
- repo: https://github.com/pycqa/flake8
2024-11-08 10:32:04 +01:00
rev: 7.1.1
2019-08-25 00:27:31 +02:00
hooks:
- id: flake8
2019-08-25 00:33:51 +02:00
- repo: https://github.com/asottile/pyupgrade
2024-11-08 10:32:04 +01:00
rev: v3.19.0
2019-08-25 00:33:51 +02:00
hooks:
- id: pyupgrade
2023-12-12 21:11:35 +01:00
args: [--py38-plus]
2019-08-25 00:40:39 +02:00
- repo: https://github.com/asottile/reorder_python_imports
2024-11-08 10:32:04 +01:00
rev: v3.14.0
2019-08-25 00:40:39 +02:00
hooks:
- id: reorder-python-imports
2020-12-26 13:10:56 +01:00
- repo: https://github.com/asottile/add-trailing-comma
2023-11-26 21:53:38 +01:00
rev: v3.1.0
2020-12-26 13:10:56 +01:00
hooks:
- id: add-trailing-comma