-
Suggestion
-
Resolution: Unresolved
Feature requested:
To be able to add reactions (emojis) next to a line of code.
Context:
Often the feedback given in code reviews is related to "change requests", "questions" or "things to be re-worked".
Somehow I feel that the code review process is always sitting on a negative space.
I'd like to be able to add quick positive feedback to a nice change on the code.
I do believe that positive reinforcement provides a better way to create a good mood in the office and in code reviews.
Current behaviour:
**
- 40 var i = 0; 41 - 42 for(; i<l; i++) { + 42 for(let i; i < arr.length; i++) { ╭─────────────────────────────────────────────────────────────╮ │░▓▓▓▓▓▓░░User name░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ ⃒│░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ │░▓▓▓▓▓▓░░😍░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ ╰─────────────────────────────────────────────────────────────╯ - 43 var j = a[i]; + 43 const j = a[i]; ╭─────────────────────────────────────────────────────────────╮ │░▓▓▓▓▓▓░░User name░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ │░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ │░▓▓▓▓▓▓░░👍░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ ╰─────────────────────────────────────────────────────────────╯
Desired behaviour:
- 40 var i = 0; 41 - 42 for(; i<l; i++) { 😍+ 42 for(let i; i < l; i++) { - 43 var j = a[i]; 👍+ 43 const j = a[i];