diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-07-17 17:49:16 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-07-17 18:08:02 +0300 |
| commit | cc82dd57c87e19439f851c2bfd66834f70276bb8 (patch) | |
| tree | 6aafcb943cd9ef3e3b47061f4d917f4d7ec0ab5a /.fenneldoc | |
| parent | e8351c4a47ea0472151b3f5a5ac06a70f86f0d02 (diff) | |
fix: style changes, and documentation fixes
- provide defn as an alias to fn* and change fn* to defn in all files
- fix doc for eq function
- fix and generate doc for loop macro
Diffstat (limited to '.fenneldoc')
| -rw-r--r-- | .fenneldoc | 43 |
1 files changed, 36 insertions, 7 deletions
@@ -1,13 +1,42 @@ ;; -*- mode: fennel; -*- vi:ft=fennel -;; Configuration file for Fenneldoc 0.1.2 +;; Configuration file for Fenneldoc v0.1.5 ;; https://gitlab.com/andreyorst/fenneldoc -{:ignored-args-patterns ["[a-z]" "%.%.%." "[xkf]s" "kvs" "col[0-9]" "cols?" "rest" "more" "keys" "tbl" "args"] - :project-version "0.5.3" - :project-license "[MIT](https://gitlab.com/andreyorst/fennel-cljlib/-/raw/master/LICENSE)" +{:fennel-path {} + :function-signatures true + :ignored-args-patterns ["[a-z]" + "%.%.%." + "[xkf]s" + "kvs" + "col[0-9]" + "cols?" + "rest" + "more" + "keys" + "tbl" + "args"] + :inline-references "link" + :insert-comment true + :insert-copyright true + :insert-license true + :insert-version true + :keys {:copyright "_COPYRIGHT" + :description "_DESCRIPTION" + :doc-order "_DOC_ORDER" + :license "_LICENSE" + :module-name "_MODULE_NAME" + :version "_VERSION"} + :mode "checkdoc" + :order "alphabetic" + :out-dir "./doc" :project-copyright "Copyright (C) 2020-2021 Andrey Listopadov" - :test-requirements {:init.fnl "(import-macros {: assert-eq : assert-ne : assert-is : assert-not} :fennel-test.test)" - :init-macros.fnl "(require-macros :init-macros) + :project-doc-order {} + :project-license "[MIT](https://gitlab.com/andreyorst/fennel-cljlib/-/raw/master/LICENSE)" + :project-version "v0.5.3" + :sandbox true + :test-requirements {:init-macros.fnl "(require-macros :init-macros) (import-macros {: assert-eq} :fennel-test.test) (local {: eq : vector : hash-map} (require :init))" - :tests/test.fnl "(require-macros :fennel-test.test)"}} + :init.fnl "(import-macros {: assert-eq : assert-ne : assert-is : assert-not} :fennel-test.test)" + :tests/test.fnl "(require-macros :fennel-test.test)"} + :toc true} |