We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24c92fd commit 6c671aeCopy full SHA for 6c671ae
1 file changed
rootfs/usr/local/bin/lint
@@ -1,6 +1,7 @@
1
#!/usr/bin/env bash
2
3
# Mandatory tests
4
+echo -e "\033[0;31mManadatory Linters: These must pass\033[0m"
5
gometalinter --vendor --tests --deadline=20s --disable-all \
6
--enable=gofmt \
7
--enable=misspell \
@@ -13,6 +14,7 @@ gometalinter --vendor --tests --deadline=20s --disable-all \
13
14
mandatory=$?
15
16
# Optional tests
17
+echo -e "\033[0;32mOptional Linters: These should pass\033[0m"
18
19
--enable=golint \
20
./...
0 commit comments