Spaces:
Sleeping
Sleeping
File size: 713 Bytes
f69e3f4 |
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 27 28 29 30 |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: check-yaml
- id: check-toml
- id: debug-statements
- id: detect-private-key
- id: mixed-line-ending
- id: end-of-file-fixer
- repo: local
hooks:
- id: black
name: black
entry: python -m black
language: system
require_serial: true
types: [python]
- repo: local
hooks:
- id: pylint
name: pylint
entry: python -m pylint
language: system
require_serial: true
types: [python]
exclude: ^(tests|cd)
|