ci: update comments in pre-commit to look like most projects

pull/1186/head
Erik Sundell 2022-10-08 13:31:38 +02:00
rodzic d1a4f43b08
commit a568c3b8e4
1 zmienionych plików z 43 dodań i 5 usunięć

Wyświetl plik

@ -1,6 +1,44 @@
# pre-commit is a tool to perform a predefined set of tasks manually and/or
# automatically before git commits are made.
#
# Config reference: https://pre-commit.com/#pre-commit-configyaml---top-level
#
# Common tasks
#
# - Run on all files: pre-commit run --all-files
# - Register git hooks: pre-commit install --install-hooks
#
repos:
- repo: https://github.com/ambv/black
rev: 22.3.0
hooks:
- id: black
args: [--target-version=py36]
# # Autoformat: Python code, syntax patterns are modernized
# - repo: https://github.com/asottile/pyupgrade
# rev: v3.0.0
# hooks:
# - id: pyupgrade
# args:
# - --py38-plus
# Autoformat: Python code
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
args:
- --target-version=py36
- --target-version=py37
- --target-version=py38
- --target-version=py39
- --target-version=py310
# # Autoformat: Python code
# - repo: https://github.com/pycqa/isort
# rev: 5.10.1
# hooks:
# - id: isort
# args:
# - --profile=black
# # Autoformat: markdown, yaml (but not helm templates)
# - repo: https://github.com/pre-commit/mirrors-prettier
# rev: v2.7.1
# hooks:
# - id: prettier