coffee-react icon indicating copy to clipboard operation
coffee-react copied to clipboard

Tabs don't count as whitespace

Open randomer opened this issue 10 years ago • 0 comments

When using tabs for indentation, code like this

<Text style={styles.welcome}>
    Welcome to React Native!
</Text>

compiles to

React.createElement(Text, {
      "style": styles.welcome
    }, "\t\t\t\tWelcome to React Native!")

which messes up the layout

randomer avatar Jun 24 '15 04:06 randomer