generated from hyp3rd/go-base-app-skel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
35 lines (35 loc) · 1000 Bytes
/
.pre-commit-config.yaml
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
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: fix-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: debug-statements
- id: check-yaml
files: .*\.(yaml|yml)$
exclude: docs/*
args: [--allow-multiple-documents]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
files: \.(yaml|yml)$
types: [file, yaml]
entry: yamllint -c ./.yamllint.yaml --strict -f parsable
- repo: local
hooks:
- id: golangci-lint
name: golangci-lint
language: system
entry: ./.pre-commit/golangci-lint-hook
require_serial: true
- id: unit-test
name: unit test
language: system
entry: ./.pre-commit/unit-test-hook
require_serial: true