repos / pgit

static site generator for git
git clone https://github.com/picosh/pgit.git

commit
629c6d0
parent
ba01b99
author
Eric Bower
date
2026-01-02 19:42:40 -0500 EST
chore: update linter
3 files changed,  +13, -2
A .golangci.yml
+12, -0
 1@@ -0,0 +1,12 @@
 2+version: "2"
 3+
 4+linters:
 5+  enable:
 6+    - godot
 7+
 8+formatters:
 9+  enable:
10+    - goimports
11+
12+run:
13+  timeout: 10m
M Makefile
+1, -1
1@@ -22,7 +22,7 @@ fmt:
2 .PHONY: fmt
3 
4 lint:
5-	golangci-lint run -E goimports -E godot --timeout 10m
6+	golangci-lint run
7 .PHONY: lint
8 
9 test:
M main.go
+0, -1
1@@ -3,7 +3,6 @@ package main
2 import (
3 	"bytes"
4 	"embed"
5-	_ "embed"
6 	"flag"
7 	"fmt"
8 	"html/template"