I know React community is very focused on creating good patterns, and I've been searching at React forums, github, articles and cannot find any mentions about the 'optimun' line length for jsx code.
- In eslint-config-react-app there is no override for ESLint max-len rule.
- ESLint max-len seems to default to 80 characters long, but that's just for raw javascript.
Given that JSX is a different kind of code (it includes HTML markup that might add the need for more characters), is there any recommendation by the React community about this?
Edit
Found Airbnb React/JSX Style Guide, that seems to be well accepted, but no mention about the line length. Also I'm liking to know your experiences.