Rider tips: Don't add bom when creating utf-8 files!

BOM is annoying. Especially when I am creating a SQL script file.
BOM is annoying. Especially when I am creating a SQL script file.
This change has wasted my DevOps Colleague a lot of time. I hope this information could help more people.
IMHO, using a tool should be the solution.
^
(shift + 6)This moves the cursor to the first non-blank character of the current line.
_
(underscore)This also moves the cursor to the first non-blank character on the same line the cursor is on.
By the way, the 0
command moves to the absolute start of the line, including any leading whitespace.
Have you ever seen weird indentations when doing code review? Mostly, the cause is that GitHub's default TABSIZE setting is 8 instead of 4 while some old code uses TAB for indentation. Fortunately, we can easily fix it by change this setting. 8 is not an ideal default TABSIZE nowadays, right? so it is all GitHub's fault!