all.bash: simplify some checker args

The args were copied from another repo with a different structure.

For now, we can check every Go package or file in the repo, without
exclusions.

Change-Id: I7591fecffcc0d30f4b3a66b2ee7cfd81501b3b22
Reviewed-on: https://go-review.googlesource.com/c/vuln/+/368115
Trust: Jonathan Amsterdam <jba@google.com>
Run-TryBot: Jonathan Amsterdam <jba@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Julie Qiu <julie@golang.org>
diff --git a/all.bash b/all.bash
index b93d6cc..5be6e5c 100755
--- a/all.bash
+++ b/all.bash
@@ -101,13 +101,13 @@
 # check_staticcheck runs staticcheck on source files.
 check_staticcheck() {
   ensure_go_binary honnef.co/go/tools/cmd/staticcheck
-  runcmd staticcheck $(go list ./... | grep -v third_party | grep -v internal/doc | grep -v internal/render)
+  runcmd staticcheck ./...
 }
 
 # check_misspell runs misspell on source files.
 check_misspell() {
   ensure_go_binary github.com/client9/misspell/cmd/misspell
-  runcmd misspell cmd/**/*.{go,sh} internal/**/* README.md
+  runcmd misspell .
 }
 
 go_linters() {