c6d9f0546f
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
# 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: v4.3.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
args:
|
|
- --unsafe
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.2.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args:
|
|
- --py3-plus
|
|
- --keep-runtime-typing
|
|
# This file is more readable without yield from
|
|
exclude: ^docs_src/progressbar/tutorial004\.py
|
|
- repo: https://github.com/PyCQA/autoflake
|
|
rev: v1.7.7
|
|
hooks:
|
|
- id: autoflake
|
|
args:
|
|
- --recursive
|
|
- --in-place
|
|
- --remove-all-unused-imports
|
|
- --remove-unused-variables
|
|
- --expand-star-imports
|
|
- --exclude
|
|
- __init__.py
|
|
- --remove-duplicate-keys
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
name: isort (python)
|
|
- id: isort
|
|
name: isort (cython)
|
|
types: [cython]
|
|
- id: isort
|
|
name: isort (pyi)
|
|
types: [pyi]
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.10.0
|
|
hooks:
|
|
- id: black
|
|
ci:
|
|
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
|
|
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate
|