forked from jenningsloy318/redfish_exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
36 lines (35 loc) · 931 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
36
# 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: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-json
- id: check-yaml
- id: check-merge-conflict
- repo: local
hooks:
- id: go-fmt
name: go fmt
language: golang
entry: go fmt ./...
pass_filenames: false
- id: go-mod-tidy
name: go mod tidy
language: golang
entry: go mod tidy
pass_filenames: false
- id: go-vet
name: go vet
language: golang
entry: go vet ./...
pass_filenames: false
- id: golangci-lint
name: golangci-lint
language: golang
entry: go run github.com/golangci/golangci-lint/cmd/golangci-lint run ./...
pass_filenames: false