From 53747a1afb5857cf4b1979649c5f9f9a4808f17d Mon Sep 17 00:00:00 2001 From: abdfnx Date: Fri, 4 Feb 2022 17:49:01 +0300 Subject: [PATCH] add gitpod and golangci config files --- .gitpod.yml | 3 +++ .golangci.yml | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitpod.yml create mode 100644 .golangci.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..585cc84 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,3 @@ +tasks: + - init: go get -d ./... + command: curl -fsSL https://cutt.ly/tran-cli | bash diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 0000000..c56a591 --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,7 @@ +linters: + enable: + [ gofmt ] + +issues: + max-issues-per-linter: 0 + max-same-issues: 0