-
Notifications
You must be signed in to change notification settings - Fork 0
RULE. Code
Seogeurim edited this page Aug 10, 2021
·
1 revision
- ESLint : airbnb
- Prettier
// .prettierrc
{
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80,
"arrowParens": "avoid"
}
- class명 : title-name
- 리액트 폴더/파일명 : kebab case
- 변수명 : camel case
- 생성자 함수 / 클래스 / 컴포넌트명 : pascal case
- 상수명 : 대문자 GNU Naming Convention (
THIS_IS_CONSTANT
) - boolean값 :
isTrue