We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4d4f8d + 0a79689 commit 500361cCopy full SHA for 500361c
GNUmakefile
@@ -45,4 +45,7 @@ tfproviderlint:
45
-XAT001=false -XR003=false -XR005=false -XS001=false -XS002=false \
46
./...
47
48
-.PHONY: default build test testacc-up testacc-down testacc vet fmt tfproviderlint
+lint: tfproviderlint
49
+ ./scripts/lint.sh
50
+
51
+.PHONY: default build test testacc-up testacc-down testacc vet fmt tfproviderlint lint
scripts/lint.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
3
+docker run --rm -v "$(pwd):/workspace" -w /workspace golangci/golangci-lint:v1.43 golangci-lint run
4
+docker run --rm -v "$(pwd):/workspace" -w /workspace avtodev/markdown-lint:v1 --config .markdownlint.yml docs
0 commit comments