- @LoginAccount 파라메타를 command 객체로 바꾸는 ArgumentResolver 추가 - .editorconfig 에서 로그파일 (app.log)를 무시하도록 설정 추가
36 lines
510 B
INI
36 lines
510 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
[*]
|
|
# [encoding-utf8]
|
|
charset = utf-8
|
|
|
|
# [newline-eof]
|
|
insert_final_newline = true
|
|
|
|
# Ignore
|
|
[*.log]
|
|
charset = unset
|
|
end_of_line = unset
|
|
insert_final_newline = unset
|
|
trim_trailing_whitespace = unset
|
|
indent_style = unset
|
|
indent_size = unset
|
|
|
|
[*.bat]
|
|
end_of_line = crlf
|
|
|
|
[*.java]
|
|
# [indentation-space]
|
|
indent_style = space
|
|
|
|
# [4-spaces-tab]
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
# [no-trailing-spaces]
|
|
trim_trailing_whitespace = true
|
|
|
|
# [line-length-100]
|
|
max_line_length = 100
|