fix: lint

This commit is contained in:
Tienson Qin
2026-04-07 19:38:13 +08:00
parent c698a3f4fc
commit da1985bcf3
2 changed files with 10 additions and 2 deletions

View File

@@ -2,6 +2,8 @@
logseq.db-sync.cycle/fix-cycle!
;; API
logseq.db-sync.node.entry/main
;; API (CLI entrypoint)
logseq.db-sync.node.show-checksum/main
;; API
logseq.db-sync.order/fix-duplicate-orders!
;; TODO: is this ns needed?
@@ -25,3 +27,10 @@ logseq.db-sync.worker/worker
logseq.db-sync.worker.timing/summary
;; API
logseq.db-sync.checksum/recompute-checksum-diagnostics
;; API (test runner entrypoint)
logseq.db-sync.test-runner/main
;; Disabled FIXME tests in node_adapter_test.cljs
logseq.db-sync.node-adapter-test/post-json
logseq.db-sync.node-adapter-test/get-json
logseq.db-sync.node-adapter-test/parse-json
logseq.db-sync.node-adapter-test/start-test-server

View File

@@ -1,8 +1,7 @@
(ns logseq.db-sync.node-adapter-test
;; Linters disabled because commented out FIXME code causes false positives
{:clj-kondo/config {:ignore true}}
(:require [cljs.test :refer [deftest is async testing]]
[clojure.string :as string]
(:require [clojure.string :as string]
[logseq.db-sync.node.server :as node-server]
[logseq.db-sync.protocol :as protocol]
[promesa.core :as p]))