mirror of
https://github.com/logseq/logseq.git
synced 2026-04-25 06:35:02 +00:00
Added a :discouraged-namespace linter check for future times. Had to add clj-kondo configs for db and outliner since they were incorrectly inheriting the frontend config, specifically the :discouraged-namespace linter. Also removed a 'm/=>' in outliner dep b/c it would've created a complex clj-kondo setup for malli that would need to be updated for both top-level clj-kondo and deps/outliner
14 lines
459 B
Clojure
14 lines
459 B
Clojure
{:linters
|
|
{:aliased-namespace-symbol {:level :warning}
|
|
:namespace-name-mismatch {:level :warning}
|
|
:used-underscored-binding {:level :warning}
|
|
|
|
:consistent-alias
|
|
{:aliases {clojure.string string
|
|
logseq.outliner.core outliner-core
|
|
logseq.outliner.op outliner-op
|
|
logseq.outliner.pipeline outliner-pipeline
|
|
logseq.outliner.datascript-report ds-report}}}
|
|
:skip-comments true
|
|
:output {:progress true}}
|