-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature/28] checkstyle action 기반으로 lint 검사기 구현 #35
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> - gitattributes - 새줄 문자가 LF로 변환 될 수 있도록 설정 <footer> - 관련: #28
<body> - editorconfig - editor 단위의 코드 style 설정 파일 <footer> - 관련: #28
<body> - namo-intellij-formatter.xml - intellij 에서 사용될 코드 포매팅 스팩 작성 - naver 캠퍼스 헥데이 java 코딩 컨벤션의 스팩을 기반으로 하며 import 관련 설정이 변경됨 <footer> - 관련: #28
<body> - namo-checkstyle-rule.xml - checkstyle 플러그인에 적용할 커스텀 룰 <footer> - 관련: #28
<body> - 공통 - domain 단위로 import 분리 - jakarta 관련 import 설정 추가 - namo-intellij-formatter.xml - intellij 포멧 설정 적용 확인 <footer> - 관련: #28
<body> - namo-checkstyle-rules.xml - import 설정 오타 수정 - [list-uppercase-abbr] 관련 예외 단어 추가 <footer> - 관련: #28
<body> - code formatting - 자동 수정 기능을 이용하여 수정 진행 <footer> - 관련: #28
<footer> - 관련: #28
5 tasks
src/main/java/com/example/namo2/global/common/exception/GlobalExceptionHandler.java
Show resolved
Hide resolved
src/main/java/com/example/namo2/global/common/exception/GlobalExceptionHandler.java
Show resolved
Hide resolved
src/main/java/com/example/namo2/global/common/exception/GlobalExceptionHandler.java
Show resolved
Hide resolved
src/main/java/com/example/namo2/global/common/exception/GlobalExceptionHandler.java
Show resolved
Hide resolved
src/main/java/com/example/namo2/global/common/exception/GlobalExceptionHandler.java
Show resolved
Hide resolved
galug
approved these changes
Mar 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of change
PR Desciption
노션
에 작성하겠습니다..editorconfig
: 인텔리제이 외의 툴에서도 공유 가능한 root 설정.gitattributes
: github push 시에 적용 되는 공유 설정namo-intellij-formatter.xml
: 인텔리제이에서 사용될 커스텀 코드 포메터 설정 파일namo-checkstyle-rule.xml
: checkstyle을 위한 커스텀 린트 설정 파일namo-checkstyle-suppressions.xml
: checkstyle의 예외 사항을 정리한 파일노션
에서 다루겠습니다.Requirements for Reviewer
PR Log
새롭게 배운 것
고민 중인 사항
첨부 자료
관련 이슈