catch clojure exceptions hook, line, and sinker
1{
2 "doc/*.md": {
3 "type": "doc"
4 },
5 "README.md": {
6 "type": "doc"
7 },
8 "src/noahtheduke/*.clj": {
9 "type": "source",
10 "alternate": "test/noahtheduke/{}_test.clj"
11 },
12 "src/noahtheduke/*.cljc": {
13 "type": "source",
14 "alternate": "test/noahtheduke/{}_test.cljc"
15 },
16 "test/noahtheduke/*_test.clj": {
17 "type": "test",
18 "alternate": "src/noahtheduke/{}.clj"
19 },
20 "test/noahtheduke/*_test.cljc": {
21 "type": "test",
22 "alternate": "src/noahtheduke/{}.cljc"
23 }
24}