Skip to content

Commit 879fab4

Browse files
committed
Fix lint issues
Signed-off-by: Pete Wall <pete.wall@grafana.com>
1 parent 5b4bb49 commit 879fab4

5 files changed

Lines changed: 5 additions & 1 deletion

File tree

.yamllint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ yaml-files:
77
ignore:
88
- .git
99
- charts/**/templates
10+
- node_modules
1011

1112
extends: default
1213

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SHELL_SCRIPTS = $(shell find . -name "*.sh")
2020
.PHONY: lint-shell
2121
lint-shell: ## Lint Shell scripts
2222
@echo "Linting Shell scripts..."
23-
@shellcheck --rcfile=.shellcheckrc $(SHELL_SCRIPTS)
23+
@shellcheck $(SHELL_SCRIPTS)
2424

2525
YAML_FILES = $(shell find . -name "*.yaml")
2626
.PHONY: lint-yaml

tools/schema-generator/tests/basic-types/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
types:
23
stringField: "stringValue"
34
arrayField: []

tools/schema-generator/tests/jq-schema-mods/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
section:
23
# We don't want to include the examples, just the fact that this is an object
34
objectWithExamples:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
types:
23
stringOrNull: "default is string"
34
arrayOfStrings: []

0 commit comments

Comments
 (0)