Skip to content

Commit 2807775

Browse files
authored
Update common Prometheus files (#609)
Signed-off-by: prombot <[email protected]>
1 parent 617b51d commit 2807775

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.yamllint

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
extends: default
3+
ignore: |
4+
ui/react-app/node_modules
35

46
rules:
57
braces:

Makefile.common

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ endif
4949
GOTEST := $(GO) test
5050
GOTEST_DIR :=
5151
ifneq ($(CIRCLE_JOB),)
52-
ifneq ($(shell command -v gotestsum > /dev/null),)
52+
ifneq ($(shell command -v gotestsum 2> /dev/null),)
5353
GOTEST_DIR := test-results
5454
GOTEST := gotestsum --junitfile $(GOTEST_DIR)/unit-tests.xml --
5555
endif
@@ -182,7 +182,7 @@ endif
182182
.PHONY: common-yamllint
183183
common-yamllint:
184184
@echo ">> running yamllint on all YAML files in the repository"
185-
ifeq (, $(shell command -v yamllint > /dev/null))
185+
ifeq (, $(shell command -v yamllint 2> /dev/null))
186186
@echo "yamllint not installed so skipping"
187187
else
188188
yamllint .

0 commit comments

Comments
 (0)