-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.vars
More file actions
36 lines (30 loc) · 1.31 KB
/
Makefile.vars
File metadata and controls
36 lines (30 loc) · 1.31 KB
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
# Setup default test timeout (default: 10s).
TEST_TIMEOUT := 20s
# Setup when to push images (default: pulls [never, pulls, merges])
IMAGE_PUSH := never
# Setup the activated commit hooks (default: pre-commit [pre-commit, commit-msg]).
GITHOOKS := pre-commit commit-msg
# Setup code quality level (default: base).
CODE_QUALITY := max
# Setup codacy integration (default: enabled [enabled, disabled]).
CODACY := enabled
# Customizing codacy server for open source.
CODACY_API_BASE_URL := https://api.codacy.com
# (default: false / true [cdp-pipeline])
#CODACY_CONTINUE := true
# Setup required targets before testing (default: <empty>).
#TEST_DEPS := run-db
# Setup required targets before running commands (default: <empty>).
#RUN_DEPS := run-db
# Setup required aws services for testing (comma separated, default: <empty>).
#AWS_SERVICES := sqs,s3
# Custom linters applied to prepare next level (default: <empty>).
LINTERS_CUSTOM :=
# Linters swithed off to complete next level (default: <empty>).
LINTERS_DISABLED := exhaustive forcetypeassert funcorder nlreturn
# Filter for formatting (default: <empty>).
FILTER_NOFORMAT := internal/mock/test/iface.go internal/mock/testx/iface.go
# Custom go tools to install (space separated list).
TOOLS_GO +=
# Setup private go modules (comma separated list).
GOPRIVATE := github.com/tkrop/*