aboutsummaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-04-23 11:27:21 +0700
committerShulhan <ms@kilabit.info>2024-04-23 12:25:10 +0700
commit6f26bfad43f5ea6655aabeb187f2b006be9cf819 (patch)
tree3b8380395d234cb77f2202aceef444876036efee /tools.go
parent19d1c0cc0653b7c83638367e78debf42aea5f037 (diff)
downloadgorankusu-6f26bfad43f5ea6655aabeb187f2b006be9cf819.tar.xz
all: add task to initialize the repository and tools
The task "init" include initializing git submodule, installing third party tools for linters, and installing node packages.
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools.go b/tools.go
new file mode 100644
index 0000000..e94723b
--- /dev/null
+++ b/tools.go
@@ -0,0 +1,8 @@
+// SPDX-FileCopyrightText: 2024 M. Shulhan <ms@kilabit.info>
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package gorankusu
+
+import (
+ _ "golang.org/x/tools/go/analysis"
+)