We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617b51d commit 2807775Copy full SHA for 2807775
.yamllint
@@ -1,5 +1,7 @@
1
---
2
extends: default
3
+ignore: |
4
+ ui/react-app/node_modules
5
6
rules:
7
braces:
Makefile.common
@@ -49,7 +49,7 @@ endif
49
GOTEST := $(GO) test
50
GOTEST_DIR :=
51
ifneq ($(CIRCLE_JOB),)
52
-ifneq ($(shell command -v gotestsum > /dev/null),)
+ifneq ($(shell command -v gotestsum 2> /dev/null),)
53
GOTEST_DIR := test-results
54
GOTEST := gotestsum --junitfile $(GOTEST_DIR)/unit-tests.xml --
55
endif
@@ -182,7 +182,7 @@ endif
182
.PHONY: common-yamllint
183
common-yamllint:
184
@echo ">> running yamllint on all YAML files in the repository"
185
-ifeq (, $(shell command -v yamllint > /dev/null))
+ifeq (, $(shell command -v yamllint 2> /dev/null))
186
@echo "yamllint not installed so skipping"
187
else
188
yamllint .
0 commit comments