initial commit

This commit is contained in:
gong01
2026-03-06 02:52:38 +08:00
commit ea0292491a
492 changed files with 169588 additions and 0 deletions

9
.editorconfig Normal file
View File

@@ -0,0 +1,9 @@
root = true
[*]
indent_style = space # 탭 대신 공백 사용 (탭 문자 발생 방지)
indent_size = 4 # 공백은 4칸으로 고정
end_of_line = lf # 줄바꿈은 무조건 LF로 통일 (리눅스 방식)
charset = utf-8 # 인코딩 통일
trim_trailing_whitespace = true # 줄 끝의 불필요한 공백 제거
insert_final_newline = true # 파일 끝에 빈 줄 하나 추가