From 2529d79a355ac778f5b3b37067bc475b2d9620f7 Mon Sep 17 00:00:00 2001 From: Psionik K <73710933+psionic-k@users.noreply.github.com> Date: Sun, 29 Oct 2023 23:31:48 +0900 Subject: [PATCH] Trusty linter, saving us from Tyrannical indentations! Waterboard everything Signed-off-by: Psionik K <73710933+psionic-k@users.noreply.github.com> --- lisp/erk.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/erk.el b/lisp/erk.el index 49fed8a..de07c84 100644 --- a/lisp/erk.el +++ b/lisp/erk.el @@ -182,16 +182,16 @@ you can redistribute it and/or modify (defun erk--lisp-directory () "Heuristic to find where package files are stored." (let ((root (erk--project-root))) - (if (erk--project-flat-p) - root - (file-name-as-directory (concat root "lisp"))))) + (if (erk--project-flat-p) + root + (file-name-as-directory (concat root "lisp"))))) (defun erk--test-directory () "Heuristic to find where package files are stored." (let ((root (erk--project-root))) - (if (erk--project-flat-p) - root - (file-name-as-directory (concat root "test"))))) + (if (erk--project-flat-p) + root + (file-name-as-directory (concat root "test"))))) (defun erk--project-flat-p () "Heuristic to detect flat project structure."