Skip to content

Commit

Permalink
Add a pre-commit setup to the repository.
Browse files Browse the repository at this point in the history
This will allow us to run some checks before committing.

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed Nov 14, 2023
1 parent 057b1ec commit 24204c0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ if [[ -f .env.sample ]]; then
fi
fi

if command -v pre-commit >/dev/null; then
if [[ ! -f .git/hooks/pre-commit ]]; then
pre-commit install
fi
fi

dotenv_if_exists || direnv status # https://direnv.net/man/direnv-stdlib.1.html
38 changes: 38 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_install_hook_types: ["pre-push"]
exclude: '(^docs/themes/hugo-book|^vendor|.*golden$|^\.vale)'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: check-added-large-files
- id: check-toml
- id: check-shebang-scripts-are-executable
- id: check-json
- id: check-vcs-permalinks
- id: detect-private-key
exclude: ".*_test.go"
- repo: local
hooks:
- id: lint-go
name: "Lint GO"
entry: make
args: ["lint-go"]
language: system
types: [go]
pass_filenames: false
- id: test
name: "Unit testing"
entry: make
args: ["test"]
language: system
types: [go]
pass_filenames: false
- id: lint-yaml
name: "Lint YAML"
entry: make
args: ["lint-yaml"]
language: system
types: [yaml]
pass_filenames: false

0 comments on commit 24204c0

Please sign in to comment.