Hello @carloscuesta :sunglasses:!
Super idea !
Just a comment : "Improving structure / format of the code" (🎨) seems to be a mix of
Refactoring code (♻️) and Removing linter warnings (🚨) and it's a bit confusing to use.
Based on my experience;
🎨 Is usually for general code readability changes that are done manually and on a small scale.
♻️ is for larger scale refactoring (ie doing a full rewrite something)
On another note, it seems like I usually see 👕 or 👖 for linter warning corrections instead of 🚨... these are also usually minor changes that bring the code up to language or organization standards based on a linter's output.
🎨 Should be used for code formatting things, indentation, spaces tabs etc.
♻️ Should be used for refactoring, rewriting code
Most helpful comment
🎨 Should be used for code formatting things, indentation, spaces tabs etc.
♻️ Should be used for refactoring, rewriting code