Files
hatchet/.pre-commit-config.yaml
Mohammed Nafees 9b0ec2618e Go SDK v1 feature client changes (#2160)
* feature client changes

* remove code duplication

* func name should make sense

* add simple compile gh workflow
2025-09-08 17:10:24 +02:00

22 lines
580 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-merge-conflict
exclude: ^examples/
- id: mixed-line-ending
args: ["--fix=lf"]
exclude: ^examples/
- id: end-of-file-fixer
exclude: ^examples/
- id: trailing-whitespace
exclude: ^examples/
- id: check-yaml
exclude: ^examples/
- repo: https://github.com/golangci/golangci-lint
rev: v2.4.0
hooks:
- id: golangci-lint
args: ["--config=.golangci.yml"]
exclude: ^examples/