summarylogtreecommitdiffstats
path: root/.pre-commit-config.yaml
blob: ef8655fe88054da1fde3d21923393963b4c98415 (plain)
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
#  ┬─┐┬─┐┬─┐  ┌─┐┌─┐┌┌┐┌┌┐o┌┐┐
#  │─┘│┬┘├─ ──│  │ ││││││││ │
#  ┘  ┘└┘┴─┘  └─┘┘─┘┘ ┘┘ ┘┘ ┘

fail_fast: true
repos:
- repo: https://github.com/zricethezav/gitleaks
  rev: v8.23.3
  hooks:
  - name: GitLeaks
    id: gitleaks
    args:
    - --config=gitleaks.toml
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v5.0.0
  hooks:
  - name: No merge conflicts
    id: check-merge-conflict
  - name: End of files to have a newline
    id: end-of-file-fixer
  - name: Executables have shebang
    id: check-executables-have-shebangs
  - name: Symlinks are valid
    id: check-symlinks
  - name: No submodules
    id: forbid-submodules
  - name: No mixed line ending
    id: mixed-line-ending
- repo: local
  hooks:
  - id: build
    name: Build
    entry: task build
    language: system
    types: [file]
    pass_filenames: false