Formatting settings General and Arrays

This commit is contained in:
Alex Aleksej Rechtin 2021-11-16 11:01:40 +01:00
parent 701040606e
commit 5c715a6814

View File

@ -1,4 +1,19 @@
# Formatting # Formatting
## 1.1 General
maximal 80-100 letters in one line
## 1.2 Arrays
String[] array = new String[]{"1", "2", "3", "4"}
or
String[] array = new String[]{
"1",
"2",
"3",
"4"
}
# 2 Naming # 2 Naming
## 2.1 General ## 2.1 General
Names should only include ASCII letters and digits and should never begin with a digit. Names should only include ASCII letters and digits and should never begin with a digit.