-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
37 lines (29 loc) · 1.94 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# EditorConfig is awesome: https://editorconfig.org
# EditorConfig 설정 파일
# 이 파일은 코드 스타일을 정의하고 다양한 편집기에서 일관성을 유지하기 위해 사용됩니다.
root = true
[*]
charset = utf-8 # 파일의 문자 인코딩 설정 (UTF-8로 설정)
end_of_line = lf # 줄 끝 스타일 설정 (LF - Line Feed, Unix 스타일)
indent_style = space # 들여쓰기 스타일 설정 (공백 사용)
trim_trailing_whitespace = true # 각 줄의 끝에 있는 공백을 자동으로 제거
insert_final_newline = true # 파일의 마지막에 항상 빈 줄 추가
max_line_length = 120 # 한 줄의 최대 길이 설정 (120 문자)
[*.java]
# Tab and Indent Size 설정
ij_java_tab_width = 4 # 탭 너비 설정 (4칸)
ij_java_indent_size = 4 # 들여쓰기 크기 (4칸)
ij_java_continuation_indent_size = 8 # 이어지는 줄에 대한 들여쓰기 크기 (8칸)
ij_java_keep_indents_on_empty_lines = false # 빈 줄에서도 들여쓰기 유지
# Braces 설정
ij_java_if_brace_force = always # if 문에서 중괄호 사용 강제 (항상)
ij_java_for_brace_force = always # for 문에서 중괄호 사용 강제 (항상)
ij_java_while_brace_force = always # while 문에서 중괄호 사용 강제 (항상)
# Blank Lines 설정
ij_java_blank_lines_after_class_header = 1 # 클래스 헤더 뒤에 빈 줄 하나 추가
ij_java_blank_lines_around_method = 1 # 메서드 정의 전후에 빈 줄 하나 추가
ij_java_blank_lines_before_class_end = 1 # 클래스 끝에 빈 줄 하나 추가
# Line Wrapping 설정
ij_java_wrap_long_lines = true # 긴 줄을 자동으로 줄바꿈
# Method Parameters 설정
ij_java_method_parameters_wrap = normal # 메서드 매개변수 줄바꿈 방식 (일반적인 규칙 적용)