VSCode

  1. 함수 변수 camelCase
  2. 함수의 맨 앞에 기능에 해당하는 동사를 넣자
  3. 기능별 js 파일 생성
  4. .prettierrc 사용
{
  "singleQuote": true,
  "semi": true,
  "useTabs": false,
  "tabWidth": 2,
  "trailingComma": "all",
  "printWidth": 100,
  "arrowParens": "always",
  "orderedImports": true,
  "bracketSpacing": true,
  "jsxBracketSameLine": false
}

MySQL

  1. snake_case