-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbb.edn
39 lines (31 loc) · 903 Bytes
/
bb.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
;; This bb.edn demonstrates how these tasks can
;; used. Running tasks from within this repo is
;; not recommended
{:paths ["src"]
:deps
;; For example nbb scripts
{#_logseq/graph-parser
#_{:local/root "../logseq/deps/graph-parser"}
local/deps
{:local/root "."}}
:pods
{org.babashka/fswatcher {:version "0.0.3"}
clj-kondo/clj-kondo {:version "2022.10.05"}}
:tasks
{nbb:watch
logseq.bb-tasks.nbb.watch/watch
nbb:portal-watch
logseq.bb-tasks.nbb.watch/portal-watch
lint:large-vars
logseq.bb-tasks.lint.large-vars/-main
lint:carve
logseq.bb-tasks.lint.carve/-main
lint:ns-docstrings
logseq.bb-tasks.lint.ns-docstrings/-main
lint:minimize-public-vars
logseq.bb-tasks.lint.minimize-public-vars/-main
lint:rules
{:requires ([logseq.bb-tasks.lint.datalog :as datalog])
:task (datalog/lint-rules
;; These should be your app's rules
[])}}}