AGL Coding Rules
Cấu hình chung cho Editor
- Encoding là
UTF-8 - Line break code (End of Line Sequence) dùng
LF - Thụt đầu dòng (indent) dùng tab (2 khoảng trắng).
Ví dụ: Cấu hình cho VS code trong settings.json:
{
"files.encoding": "utf8", /* Encoding is UTF-8 */
"files.eol": "\n", /* Line break code is LF */
"editor.tabSize": 2, /* Tab is 2 half-width spaces */
}