Remix.run Logo
tacitusarc a day ago

Please just don’t make the opinionated formatted use two space indentation. That is one of the craziest recent trends in the JS ecosystem.

bn-l 5 hours ago | parent | next [-]

Same here. It encourages deep indentation and at the same time makes the indents harder to quickly parse.

Also single bloody quotes. Why?

azemetre a day ago | parent | prev [-]

Can you say what you’d prefer and why? I often use very large fonts, well large compared to my peers, when coding and really prefer tabs as I can define their width myself.

tacitusarc 2 hours ago | parent | next [-]

Tabs, four spaces, hell even three spaces. I care very little about formatting as long as I can understand quickly what I’m looking at. So basically anything greater than two spaces.

whs a day ago | parent | prev [-]

Not OP, but I also tabs. Usually I set tab to 4 spaces as 2 space is too little to clearly see the indentation, but in frontend projects usually I'd need to set it to 2 as otherwise the JSX layout would easily overflow horizontally. JS also prefer callback-style code that requires another indentation, which might not always be possible to replace with await.