-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(test): clean up file preamble
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
;;; validate-templates.el --- Make sure the el-patch templates are valid -*- lexical-binding: t; -*- | ||
;;; magit-file-icons-tests.el --- Tests for the magit-file-icons package -*- lexical-binding: t; -*- | ||
|
||
;; Author: Gregor Grigorjan <[email protected]> | ||
;; Copyright (C) 2024 | ||
|
||
;; Author: ;; Gregor Grigorjan <[email protected]> | ||
|
||
;; This program is free software; you can redistribute it and/or modify | ||
;; it under the terms of the GNU General Public License as published by | ||
|
@@ -17,6 +19,14 @@ | |
|
||
;;; Commentary: | ||
|
||
;; Currently, just checks if el-patch templates are valid | ||
;; with the `el-patch-validate-all-templates' function. | ||
;; This function doesn't actually error if there are invalid templates, | ||
;; it just prints informational messages. | ||
|
||
;; flycheck-disabled-checkers: (emacs-lisp emacs-lisp-checkdoc) | ||
;; End: | ||
|
||
;;; Code: | ||
|
||
(require 'magit-file-icons) | ||
|