all repos — website @ ca4e1a14212033d81caf4a58107a4bdc2912c4b7

My website

(automatically) format with golines
Alan Pearce alan@alanpearce.eu
Sun, 23 Jun 2024 19:43:31 +0200
commit

ca4e1a14212033d81caf4a58107a4bdc2912c4b7

parent

38fb02f470c32cf2a3f4cb9bef540840d85f9254

2 files changed, 7 insertions(+), 1 deletions(-)

jump to
A .dir-locals.el
@@ -0,0 +1,4 @@+;;; Directory Local Variables            -*- no-byte-compile: t -*-
+;;; For more information see (info "(emacs) Directory Variables")
+
+((go-ts-mode . ((apheleia-formatter . golines)))))
M internal/server/dev.gointernal/server/dev.go
@@ -80,7 +80,9 @@ log.Info("watcher event", "name", event.Name, "op", event.Op.String()) 				if event.Has(fsnotify.Create) || event.Has(fsnotify.Rename) {
 					f, err := os.Stat(event.Name)
 					if err != nil {
-						slog.Error(fmt.Sprintf("error handling %s event: %v", event.Op.String(), err))
+						slog.Error(
+							fmt.Sprintf("error handling %s event: %v", event.Op.String(), err),
+						)
 					} else if f.IsDir() {
 						err = watcher.Add(event.Name)
 						if err != nil {