mirror of
https://github.com/run-llama/llamactl-deploy.git
synced 2026-06-30 21:37:53 -04:00
27 lines
706 B
YAML
27 lines
706 B
YAML
---
|
|
default_language_version:
|
|
python: python3
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: check-yaml
|
|
- id: detect-private-key
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
- id: trailing-whitespace
|
|
|
|
- repo: https://github.com/adamchainz/blacken-docs
|
|
rev: 1.16.0
|
|
hooks:
|
|
- id: blacken-docs
|
|
name: black-docs-text
|
|
alias: black
|
|
types_or: [rst, markdown, tex]
|
|
additional_dependencies: [black==23.10.1]
|
|
# Using PEP 8's line length in docs prevents excess left/right scrolling
|
|
args: [--line-length=79]
|