Skip to content

Commit

Permalink
Trusty linter, saving us from Tyrannical indentations!
Browse files Browse the repository at this point in the history
Waterboard everything

Signed-off-by: Psionik K <[email protected]>
  • Loading branch information
psionic-k committed Oct 29, 2023
1 parent 098d292 commit 2529d79
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lisp/erk.el
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 2529d79

Please sign in to comment.