Skip to content

RULE. Code

Seogeurim edited this page Aug 10, 2021 · 1 revision

Lint

  • 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
Clone this wiki locally