repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
6f94c46
parent
5651ec1
author
Eric Bower
date
2025-05-24 13:04:56 -0400 EDT
refactor(lint): use golangci config file
3 files changed,  +9, -2
M .github/actions/test/action.yml
+0, -1
1@@ -13,7 +13,6 @@ runs:
2       uses: golangci/golangci-lint-action@v3
3       with:
4         version: latest
5-        args: -E goimports -E godot --timeout 10m
6     - name: Run tests
7       shell: bash
8       run: |
A .golangci.yml
+8, -0
1@@ -0,0 +1,8 @@
2+version: "2"
3+linters:
4+  default: standard
5+  enable:
6+    - godot
7+    - goimports
8+run:
9+  timeout: 10m
M Makefile
+1, -1
1@@ -21,7 +21,7 @@ css:
2 .PHONY: css
3 
4 lint:
5-	golangci-lint run -E goimports -E godot --timeout 10m
6+	golangci-lint run
7 .PHONY: lint
8 
9 test: