pico

created pr with 68.1 on 2025-05-24T17:05:27Z · by c8ef7d19
cmds
checkout latest patchset:
ssh pr.pico.sh print 68 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 68.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 68

Patchset 68.1 on 2025-05-24T17:05:27Z · commit 6f94c46

refactor(lint): use golangci config file
Eric Bower 2025-05-24T17:04:56Z
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (3 files skipped: unsupported file type)
+0 -1 .github/actions/test/action.yml #
......@@ -13,7 +13,6 @@ runs:
1313 uses: golangci/golangci-lint-action@v3
1414 with:
1515 version: latest
16- args: -E goimports -E godot --timeout 10m
1716 - name: Run tests
1817 shell: bash
1918 run: |
+8 -0 .golangci.yml #
......@@ -0,0 +1,8 @@
1+version: "2"
2+linters:
3+ default: standard
4+ enable:
5+ - godot
6+ - goimports
7+run:
8+ timeout: 10m
+1 -1 Makefile #
......@@ -21,7 +21,7 @@ css:
2121 .PHONY: css
2222
2323 lint:
24- golangci-lint run -E goimports -E godot --timeout 10m
24+ golangci-lint run
2525 .PHONY: lint
2626
2727 test:
Back to top