-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (34 loc) · 906 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
35 lines (34 loc) · 906 Bytes
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
# Pre-commit configuration for mlflow-go-client
repos:
# Standard pre-commit hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: [--allow-multiple-documents]
- id: check-json
exclude: ^examples/api_examples\.ipynb$
- id: check-toml
- id: check-merge-conflict
- id: check-added-large-files
args: [--maxkb=1000]
- id: debug-statements
# Local checks
- repo: local
hooks:
- id: checks
name: checks
entry: make
args: [fmt, lint]
language: system
types: [go]
pass_filenames: false
- id: clean-and-build
name: clean and build
entry: make
args: [clean, build]
language: system
types: [go]
pass_filenames: false