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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
repos:
- repo: local
hooks:
- id: check-added-large-files
name: Check for added large files
entry: check-added-large-files
language: system
- id: check-toml
name: Check Toml
entry: check-toml
language: system
types: [toml]
- id: check-yaml
name: Check Yaml
entry: check-yaml
language: system
types: [yaml]
- id: end-of-file-fixer
name: Fix End of Files
entry: end-of-file-fixer
language: system
types: [text]
stages: [pre-commit, pre-push, manual]
- id: ruff-check
name: Lint code with Ruff
entry: ruff check
language: system
types: [python]
require_serial: true
- id: ruff-format
name: Format code with Ruff
entry: ruff format
language: system
types: [python]
require_serial: true
- id: trailing-whitespace
name: Trim Trailing Whitespace
entry: trailing-whitespace-fixer
exclude: \.ambr$
language: system
types: [text]
stages: [pre-commit, pre-push, manual]
- repo: https://github.com/prettier/pre-commit
rev: v2.1.2
hooks:
- id: prettier
|