This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-02-14
Channels
- # ai (4)
- # babashka (4)
- # beginners (46)
- # biff (5)
- # calva (12)
- # clojure (6)
- # clojure-austin (13)
- # clojure-dev (27)
- # clojure-europe (62)
- # clojure-nl (1)
- # clojure-norway (17)
- # clojure-spec (2)
- # clojure-uk (12)
- # clojurescript (10)
- # cursive (3)
- # datahike (26)
- # datalevin (9)
- # datomic (7)
- # gratitude (4)
- # honeysql (9)
- # hyperfiddle (12)
- # instaparse (2)
- # lsp (65)
- # membrane (7)
- # missionary (2)
- # off-topic (8)
- # polylith (33)
- # portal (7)
- # quil (1)
- # re-frame (4)
- # reagent (18)
- # releases (3)
- # ring (3)
- # spacemacs (2)
- # specter (4)
Released overarch 0.9.0. • added warnings for model inconsistencies ◦ added reporting for unresolvable references in views • enhanced model info • added support for skinparams nodesep and ranksep for plantuml rendering (see Usage doc) • added automatic include of related nodes in views via {:include :related} (see Usage doc) • internal refactorings and enhancements • updated docs and example models https://github.com/soulspace-org/overarch
https://github.com/squint-cljs/squint: Light-weight ClojureScript dialect
v0.6.91 (2024-02-14)
• https://github.com/squint-cljs/squint/issues/462: Add "exports"
field to package.json
• https://github.com/squint-cljs/squint/issues/460: escape <
and >
in JSX strings
https://github.com/NoahTheDuke/splint: Linter focused on style and code shape
1.13
New Rules
• lint/prefer-method-values
: (Clojure 1.12+) Prefer (^[] String/toUpperCase "noah")
to (.toUpperCase "noah")
. Enabled by default.
• lint/require-explicit-param-tags
: (Clojure 1.12+) Prefer (^[File] File/mkdir (io/file \"a\"))
to (File/mkdir (io/file \"a\"))
. Prefer (^[String String] File/createTempFile \"abc\" \"b\")
to (^[_ _] File/createTempFile \"abc\" \"b\")
. Has :missing
, :wildcard
, and :both
styles, which check for lack of any :param-tags
, usage of _
in a :param-tags
, and both. Disabled by default.
Changed
• Add support for lint/prefer-method-values
in performance/dot-equals
.