Node.js 변수, 함수는 camelCase ex ) userService
DataBase Colum은 snake_case ex ) user_id
Class PascalCase ex ) UserController
상수 UPPER_SNAKE_CASE ex ) GAME_STATE
파일명 dot case
ex ) user.handler.js
한줄 IF라도 중괄호 사용하기!!
// .prettierrc
{
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 100,
"arrowParens": "always",
"orderedImports": true,
"bracketSpacing": true,
"jsxBracketSameLine": false
}