dev: format CODEOWNERS with more whitespace

Affects the result of 'doom make codeowners'
This commit is contained in:
Henrik Lissner 2024-07-01 02:04:03 -04:00
parent 39ee7129ef
commit 25d0b4065f
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -54,7 +54,7 @@ OPTIONS:
(dolist (entry (nreverse doom-make-codeowners))
(if (stringp entry)
(insert "\n" entry "\n")
(insert (car entry) " " (cdr entry) "\n")))
(insert (format "%-35s %s" (car entry) (cdr entry)) "\n")))
(insert "\n# End of CODEOWNERS")
(setq indent-tabs-mode nil) ; align w/ spaces, not tabs
(align-regexp (point-min) (point-max) "/\\(\\s-+\\)@" 1)