diff --git a/.clj-kondo/config.edn b/.clj-kondo/config.edn index e655c6e4c9..5989d2c526 100644 --- a/.clj-kondo/config.edn +++ b/.clj-kondo/config.edn @@ -45,6 +45,15 @@ :redundant-do {:level :off} + :earmuffed-var-not-dynamic + {:level :off} + + :dynamic-var-not-earmuffed + {:level :off} + + :used-underscored-binding + {:level :warning} + :unused-binding {:exclude-destructured-as true :exclude-destructured-keys-in-fn-args false diff --git a/backend/resources/app/templates/api-doc-entry.tmpl b/backend/resources/app/templates/api-doc-entry.tmpl index 97ce8a5077..43af67c244 100644 --- a/backend/resources/app/templates/api-doc-entry.tmpl +++ b/backend/resources/app/templates/api-doc-entry.tmpl @@ -6,14 +6,21 @@
{% if item.deprecated %} - Deprecated: - since v{{item.deprecated}}, + DEPRECATED + + {% endif %} + + {% if item.auth %} + + AUTH + + {% endif %} + + {% if item.webhook %} + + WEBHOOK {% endif %} - - Auth: - {% if item.auth %}YES{% else %}NO{% endif %} -