DEV Community

Discussion on: Tabs vs. Spaces

Collapse
 
rhymes profile image
rhymes • Edited

Use shared conventions.

For example in Python basically everybody uses spaces (some two, some four), the style guide favours spaces. Same for Ruby. Go uses tabs and that's it.

I tend to adhere to commonly shared style guides. Also, let the lint tools format your code, they are better than humans :-)