about summary refs log tree commit diff stats
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/justfile b/justfile
index 78bea08..6f75d1b 100644
--- a/justfile
+++ b/justfile
@@ -7,10 +7,12 @@ prepare:
 checkformat:
 	gofmt -d .
 	goimports -d .
+	golines --dry-run .
 
 format:
 	gofmt -w .
 	goimports -w .
+	golines -w .
 
 fix:
 	go fix .