Consider starting the commit message with an applicable emoji:
- 🎨
:art:when improving the format/structure of the code - 🐎
:racehorse:when improving performance - 📝
:memo:when writing docs - 🐛
:bug:when fixing a bug - 🔥
:fire:when removing code or files - 💚
:green_heart:when fixing the CI build - ✅
:white_check_mark:when adding tests - ⬆️
:arrow_up:when upgrading dependencies - ⬇️
:arrow_down:when downgrading dependencies
Favor single quotes when not concatenating, double quotes are prefered when concatenating, escaping characters or using a single quote in the string:
Single Quotes:
puts 'hello adminpanel'
Double Quotes:
h = 'hello'
a = 'adminpanel'
puts "#{h}, #{a}"
puts "\n hi"
puts "it's 6 am"