You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the correct two-step workflow from the clj-kondo docs:
--copy-configs --skip-lint (to copy configs)
--dependencies --parallel (to warm the cache)
The previous instruction used wrong flags and a literal "classpath"
string instead of the actual classpath expansion.
Copy file name to clipboardExpand all lines: README.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -947,13 +947,24 @@ meta-merge). e.g. `{:colors ^:replace {...}}`)
947
947
948
948
Ornament ships clj-kondo hooks and configuration that validate `defstyled` forms — catching bad tag names, invalid syntax, and providing correct `def`-like analysis.
949
949
950
-
The hooks are bundled in the JAR under `clj-kondo.exports/`. To activate them in your project, run:
950
+
The hooks are bundled in the JAR under `clj-kondo.exports/`. To activate them in your project:
This copies the config and hook into your `.clj-kondo/` directory. After that, clj-kondo will automatically validate `defstyled` forms in your project.
967
+
After that, clj-kondo will automatically validate `defstyled` forms in your project. Consider checking the copied configs into version control.
0 commit comments