Clojure Code Review Skill Metabase Clojure Style Guide This guide covers Clojure and ClojureScript coding conventions for Metabase. See also: for the Community Clojure Style Guide. Naming Conventions General Naming: - Acceptable abbreviations: , , , , , , , - Use for all variables, functions, and constants Function Naming: - Pure functions should be nouns describing the value they return (e.g., not or ) - Functions with side effects must end with - Don't repeat namespace alias in function names Destructuring: - Map destructuring should use kebab-case local bindings even if the map uses keys D…