libei/.pre-commit-config.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
774 B
YAML
Raw Normal View History

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-symlinks
- id: no-commit-to-branch
args: ['--branch', 'main']
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.9.4
hooks:
- id: ruff
args: ['--ignore=E741,E501', '.', 'proto/ei-scanner']
2024-10-17 15:39:07 +10:00
- id: ruff-format
args: ['.', 'proto/ei-scanner']
- repo: local
hooks:
- id: ci-fairy-generate-template
name: ci-fairy-generate-template
entry: bash -c 'command -v ci-fairy && ci-fairy generate-template || true'
language: system
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.6
hooks:
2024-10-17 15:39:07 +10:00
- id: clang-format
types_or: [c]