Check for duplicated empty lines, empty at end of file
authorFrank Duncan <frank@kank.net>
Sun, 12 Jul 2015 13:06:53 +0000 (08:06 -0500)
committerFrank Duncan <frank@kank.net>
Sun, 12 Jul 2015 13:06:53 +0000 (08:06 -0500)
resources/emptylineatend.lisp [new file with mode: 0644]
resources/twoemptylines.lisp [new file with mode: 0644]
src/main/checker.lisp

diff --git a/resources/emptylineatend.lisp b/resources/emptylineatend.lisp
new file mode 100644 (file)
index 0000000..ead2dbb
--- /dev/null
@@ -0,0 +1,9 @@
+(in-package #:nothing)
+
+(defun hello-world (a b c)
+ (progn
+  (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
+   (when
+    (read-line str)
+    (format t "This file had some things in int, yay!~%")))))
+
diff --git a/resources/twoemptylines.lisp b/resources/twoemptylines.lisp
new file mode 100644 (file)
index 0000000..8bba7ed
--- /dev/null
@@ -0,0 +1,9 @@
+(in-package #:nothing)
+
+
+(defun hello-world (a b c)
+ (progn
+  (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
+   (when
+    (read-line str)
+    (format t "This file had some things in int, yay!~%")))))
index 2c42714d771c6a3affa1774944e333d70f7dbf22..f20b6a8944fbc96f9d2cf5d8c90aab92ddb15aad 100644 (file)
@@ -11,7 +11,8 @@
 ; * in-package must be first line in file unless file is package.lisp
 ; * No whitespace at end of line
 ; * No lines that are only whitespace
-; - No empty lines at end of file
+; * No empty lines at end of file
+; * Never have two empty lines in a row
 ; * Only one in-package per file
 ;
 ; Some thoughts
@@ -34,6 +35,7 @@
   '(:begin ; start of file
     :normal ; normal processing
     :beginning-of-line
+    :beginning-of-separators-with-space ; empty space in there
     :beginning-of-symbols
     :all ; matches everything
    )))
  (defevaluator :begin "\\(in-package[^\\)]*\\)"
   (lambda ()
    (set-state :normal) nil))
+ (defevaluator :beginning-of-separators-with-space :eof
+  (constantly "Must not end with empty line"))
+ (defevaluator :beginning-of-separators-with-space "\\n"
+  (constantly "Must not have two empty lines in a row"))
  (defevaluator :begin ".*"
   (constantly "Must begin with in-package form"))
  (defevaluator :normal "\\( *in-package "
   (lambda ()
    (set-state :beginning-of-symbols)
    nil))
+ (defevaluator :beginning-of-separators-with-space " *"
+  (lambda ()
+   (set-state :beginning-of-symbols)
+   nil))
  (defevaluator :beginning-of-symbols "\\n"
-  (lambda () (when (< 0 *col-no*) "No whitespace only lines")))
+  (lambda ()
+   (if
+    (< 0 *col-no*)
+    "No whitespace only lines"
+    (set-state :beginning-of-separators-with-space))))
  (defevaluator :beginning-of-symbols ""
   (lambda ()
    (set-state :normal)