Spaces:
Runtime error
Runtime error
File size: 547 Bytes
fe1089d 9c0635e fe1089d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.12.1
hooks:
- id: black
language_version: python3.11
exclude: .components/
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
exclude: ^components/
language: system
types: [python]
args:
[
"-rn", # Only display messages
]
|