initial commit

This commit is contained in:
Dessa Simpson 2025-11-30 19:25:34 -07:00
commit 772469d21b
27 changed files with 1121 additions and 0 deletions

26
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,26 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- id: check-merge-conflict
- id: detect-private-key
- repo: https://github.com/dnephin/pre-commit-golang
rev: v0.5.1
hooks:
- id: go-fmt
- id: go-vet
- id: go-imports
- id: go-unit-tests
- id: go-build
- id: go-mod-tidy
- repo: https://github.com/golangci/golangci-lint
rev: v1.62.2
hooks:
- id: golangci-lint