greglook / cljstyle

A tool for formatting Clojure code
Eclipse Public License 1.0
293 stars 39 forks source link

Increasing file line-length or column length above 80 #84

Open dviramontes opened 2 years ago

dviramontes commented 2 years ago

Hi, having some trouble figuring out how to increase the overall line-length or column length per file above 80 columns. Any pointers would be great.

My use-case - trying to avoid indentation like this:

(let 
  [x 
     (fn [] ...)]

and would prefer indentation like this for let bindings

(let [x (fn [] ...)]

Less stair, more horizontal width if that makes sense. Preferably 120 columns. Thank you!

greglook commented 2 years ago

cljstyle doesn't currently enforce any rules around line length; is it doing something you don't expect it to?