Add AGPL license and references to it
[wolf] / src / main / package.lisp
index 31eb3e33214a4fd5f94e026cc8a6eacf5ba0412c..04498cfb195088c5be00dfc291b5718f83c27e7f 100644 (file)
@@ -1,2 +1,10 @@
-(defpackage #:syntax-checker (:use :cl)
- (:export #:check-file #:check-directory #:pretty-print-check-directory))
+; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
+(defpackage #:wolf (:use :cl)
+ (:export #:check-file #:check-directory #:pretty-print-check-directory)
+ (:documentation
+  "Enforces arbitrary set of style guidelines.
+
+This package walks over common lisp code to make sure it adheres to a set
+of syntactic guidelines designed to ensure a semblance of uniformity.  No
+current one was found that could be configured to work the way this one does,
+so instead of writing a configurable tool, another unconfigurable one was born."))