[이클립스/STS] enum 코드 예쁘게 포맷팅하기
enum을 쓰는데 자동포맷팅이 너무 못생겨서 가독성이 떨어졌다.
현재 Google Java Style Guide을 사용하고 있는데 여기서 enum code formatting만 수정했다.
설정방법
- Preferences > Java > Code Style > Formatter 쿨릭
- Active profile 옆 edit 클릭
- Line Wrapping 탭 클릭
- 목록에서 ‘enum’ declaration 찾기
- ‘enum’ declaration 하위 Constants 클릭 후 Line wrapping policy를 Wrap all elements, every element on a new line로 변경
- OK 클릭 끝!
- 결과
1 | private enum Food { |
가독성도 좋고 속시원한 코드 포맷팅스타일이 완성된다!
코드포맷팅 이클립스/STS 단축키: ctrl + shift + F