|
| 1 | +# See https://pre-commit.com for more information |
| 2 | +# See https://pre-commit.com/hooks.html for more hooks |
| 3 | +repos: |
| 4 | + - repo: https://github.com/pre-commit/pre-commit-hooks |
| 5 | + rev: v4.5.0 |
| 6 | + hooks: |
| 7 | + - id: trailing-whitespace |
| 8 | + exclude: (^tests/results/) |
| 9 | + - id: end-of-file-fixer |
| 10 | + - id: check-yaml |
| 11 | + args: [--allow-multiple-documents] |
| 12 | + - id: check-added-large-files |
| 13 | + - id: check-merge-conflict |
| 14 | + - id: check-case-conflict |
| 15 | + - id: check-vcs-permalinks |
| 16 | + - id: check-json |
| 17 | + - id: pretty-format-json |
| 18 | + args: [--autofix, --no-sort-keys, --no-ensure-ascii] |
| 19 | + - id: mixed-line-ending |
| 20 | + args: [--fix=lf] |
| 21 | + - id: no-commit-to-branch |
| 22 | + - id: detect-private-key |
| 23 | + exclude: (^examples/|^docs/|.*_test.go$) |
| 24 | + |
| 25 | + - repo: https://github.com/gitleaks/gitleaks |
| 26 | + rev: v8.18.1 |
| 27 | + hooks: |
| 28 | + - id: gitleaks |
| 29 | + |
| 30 | + - repo: local |
| 31 | + hooks: |
| 32 | + - id: golang-diff |
| 33 | + name: create-go-diff |
| 34 | + entry: bash -c 'git diff -p origin/main > /tmp/diff.patch' |
| 35 | + language: system |
| 36 | + types: [go] |
| 37 | + pass_filenames: false |
| 38 | + |
| 39 | + - repo: https://github.com/golangci/golangci-lint |
| 40 | + rev: v1.55.2 |
| 41 | + hooks: |
| 42 | + - id: golangci-lint |
| 43 | + args: [--new-from-patch=/tmp/diff.patch] |
| 44 | + |
| 45 | + # Rules are in .markdownlint-cli2.yaml file |
| 46 | + # See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for rule descriptions |
| 47 | + - repo: https://github.com/DavidAnson/markdownlint-cli2 |
| 48 | + rev: v0.12.1 |
| 49 | + hooks: |
| 50 | + - id: markdownlint-cli2 |
| 51 | + |
| 52 | + # Rules are in .yamllint.yaml file |
| 53 | + # See https://yamllint.readthedocs.io/en/stable/rules.html# for rule descriptions |
| 54 | + - repo: https://github.com/adrienverge/yamllint.git |
| 55 | + rev: v1.33.0 |
| 56 | + hooks: |
| 57 | + - id: yamllint |
| 58 | + |
| 59 | +ci: |
| 60 | + skip: [golang-diff, golangci-lint, markdownlint-cli2, yamllint] |
0 commit comments