-
Notifications
You must be signed in to change notification settings - Fork 1
/
cruler.edn
23 lines (19 loc) · 1.07 KB
/
cruler.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:validators
{:cruler.validators/start-of-file ["(approved-drug|drug)/[\\w-]+\\.ya?ml$"
"description/[\\w-]+\\.(csv|te?xt)$"]
:cruler.validators/trailing-whitespace ["description/[\\w-]+\\.(csv|te?xt)$"]
:cruler.validators/end-of-file ["description/[\\w-]+\\.(csv|te?xt)$"]
:cruler.validators/blank-line ["description/[\\w-]+\\.te?xt$"]
:sample-validator.sort/sort ["description/[\\w-]+\\.te?xt$"]
:sample-validator.reference/approval<->drug ["(approved-drug|drug)/[\\w-]+\\.ya?ml$"]
:sample-validator.duplication/duplication ["description/[\\w-]+\\.csv$"]
:sample-validator.csv-blank/csv-blank ["description/[\\w-]+\\.csv$"]
:sample-validator.spec/approval ["approved-drug/[\\w-]+\\.ya?ml$"]}
;; The classpaths including validator source codes, the default value is
;; `["validator"]`.
;; :paths ["validator"]
;; Whether to color the output result, the default value is `true`
;; :colorize true
;; Set an error-value print function, the default value is `pprint`
;; :format {:error-value :pprint}
:deps [[clj-hgvs "0.4.0"]]}