You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ✨Feat: 새로운 기능 구현
- 🐛Fix: 오류 수정
- 💄Styles: style 작업, 코드에 변화가 없는 수정 (예 : prettier, 세미콜론 등)
- ♻️Refactor: 코드 리팩토링
- 🔥remove: 파일 삭제
- 🚚Move: 리소스 이동, 이름 변경
- 🔧Add: 기본 셋팅 파일 SetUp.
- 🚀Deploy: 배포
- 🔀Merge: 브랜치 합병
- 📦Chore: 패키지 파일 수정
- 📝Docs: ReadMe, 문서 수정
프리티어 설정
{
"printWidth": 120,
//한 줄의 최대 길이를 120으로 설정,120자가 넘어가면 줄을 개행
"tabWidth": 2,
//탭의 크기를 2로 설정
"useTabs": false,
//탭 대신 공백을 사용하여 들여쓰기
"semi": true,
//세미콜론(;)을 코드 끝에 자동으로 삽입
"singleQuote": true,
//문자열을 작은따옴표(')로 표기
"trailingComma": "all",
//객체나 배열의 마지막 요소 뒤에 항상 쉼표(,)
"bracketSpacing": true,
//객체 리터럴의 괄호 주위에 공백을 추가
"jsxBracketSameLine": true,
//JSX 요소의 닫는 괄호를 같은 줄에 위치
"arrowParens": "avoid",
//화살표 함수의 인자가 하나인 경우 괄호를 생략
"endOfLine": "auto"
//개행 문자 자동 선택
}