This question has already been answered:
How to bring everything to the following rules -
indent_style = space,
indent_size = 4,
whole project automatically, which is in the src folder?
This question has already been answered:
How to bring everything to the following rules -
indent_style = space,
indent_size = 4,
whole project automatically, which is in the src folder?
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
It is necessary to find all tabs with a regular expression and change it to 4 spaces
^ {4}
, rather than 4 spaces. 2) After the conversion, so that the problem no longer bothers, you should use the EditorConfig plugin. The reasons I wrote in detail in this answer. Thank. - Sasha ChernykhSource: https://ru.stackoverflow.com/questions/557086/
All Articles