파일의 줄 끝 문자 처리

window 사용자
git config core.autocrlf true
mac 사용자
git config core.autocrlf input

커밋 컨벤션 가이드

PR 병합 커밋 컨벤션

[깃모지] [커밋타입] : 제목 (#PR번호)

exmaple
📝 docs : README.md 초안 작성 (#5)

네이밍 규칙

//상수
const MATH_PI = {'default' : 3.14};

//변수 명
const peopleList = ['Kim','Lee'];
const isValid = true;

//함수 명
const changeText = () => {};

//관례적 컨벤션
<Item clickItemCard={onClick}/> //no
<Item onClick={onClick}/> //yes

//컴포넌트
export default function MyComponet(){
	...
}

//이벤트 핸들러 등...
const onChange = () => {
	...
}

주석 관련

image.png