aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorDan Kegel <[email protected]>2024-04-12 12:19:48 -0700
committerRon Evans <[email protected]>2024-04-13 18:57:31 +0200
commit9d6e30701b98f856125e55ba3fd26fa6b8f4a280 (patch)
tree08724edc79b66fff5fe0a40ee181e90fcccd0b1c /internal
parent85b59e66da5b1741e8625655c49fcd85de379f4e (diff)
downloadtinygo-9d6e30701b98f856125e55ba3fd26fa6b8f4a280.tar.gz
tinygo-9d6e30701b98f856125e55ba3fd26fa6b8f4a280.zip
lint: add "make lint" target, run it from ci
See https://github.com/tinygo-org/tinygo/issues/4225 Runs in both circleci and github, circleci is run on branch push, github is run on PR Revive builds so fast, don't bother installing it; saves us wondering which one we get Uses tools.go idiom to give control over linter versions to go.mod. Also pacifies linter re AppendToGlobal as a token first fix. TODO: gradually expand the number of directories that are linted, uncomment more entries in revive.toml, and fix or suppress the warnings lint finds. TODO: add linters "go vet" and staticcheck NOT TODO: don't add metalinters like golangci-lint that pull in lots of new of dependencies; we'd rather not clutter go.mod that much, let alone open ourselves up to the additional attack surface.
Diffstat (limited to 'internal')
-rw-r--r--internal/tools/tools.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/tools/tools.go b/internal/tools/tools.go
new file mode 100644
index 000000000..c22654a78
--- /dev/null
+++ b/internal/tools/tools.go
@@ -0,0 +1,7 @@
+// Install linter versions specified in go.mod
+// See https://marcofranssen.nl/manage-go-tools-via-go-modules for idom
+package tools
+
+import (
+ _ "github.com/mgechev/revive"
+)