This repository was archived by the owner on Jul 21, 2024. It is now read-only.
내부 변수 표기 방법, 디렉토리 구조 고도화, gitIgnore 변경 등 프로젝트 Style 수정 #53
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.
변수 표기 방법 변경
기존 코드에서는 DI 또는 클래스명과 동일한 변수를 선언할 때 m을 붙였으나, 예제/공식 문서 등에서는 underbar(_)가 많이 사용됨에 따라 이 부분도 동일하게 적용하도록 변경합니다.
변경 예시
기존 : mContext
변경 : _context
DTOs 내부 디렉토리 구조 변경
많은 DTO가 생성됨에 따라 DTO 구분을 쉽게하기 위해서 기존 Auth에 사용되던 DTO들은 DTOs/Auth 디렉토리로 이동되었습니다. 이에 따른 리팩토링이 실행되었습니다. 추후 개발 중 Chat관련 DTO는 DTOs/Chat 내부 디렉토리로 이동 바랍니다.
gitIgnore 파일 변동
마이그레이션 시 발생하는 디렉토리 (server/Data/) 디렉토리에 대한 gitIgnore이 추가되었습니다.