mirror of
https://github.com/neuphonic/neutts-air.git
synced 2025-10-10 02:44:44 +03:00
23 lines
602 B
YAML
23 lines
602 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0 # Use the latest tag from the repo
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- id: requirements-txt-fixer
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 24.4.2 # Use the appropriate version of black
|
|
hooks:
|
|
- id: black
|
|
language_version: python3
|
|
args: [--line-length=100]
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 7.0.0
|
|
hooks:
|
|
- id: flake8
|
|
args: [--max-line-length=100]
|