HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🐣
프론트엔드 데브코스 4기 교육생
/
🍎
성기동팀
/
🪄
NIRVANA MANAGER
/
⚙️
Prettier 세팅
⚙️

Prettier 세팅

태그
setting

.prettierrc

{ "semi": true, "singleQuote": true, "endOfLine": "lf", "printWidth": 80, "tabWidth": 2, "singleAttributePerLine": true, "bracketSameLine": true, "trailingComma": "none", "arrowParens": "always", "bracketSpacing": true, "jsxSingleQuote": true, "importOrder": [ "^@api/(.*)$", "^@components/(.*)$", "^@constants/(.*)$", "^@hooks/(.*)$", "^@lib/(.*)$", "^@pages/(.*)$", "^@store/(.*)$", "^@styles/(.*)$", "^@types/(.*)$", "^@utils/(.*)$", "^@views/(.*)$", "^[./]" ], "importOrderSeparation": "true", "importOrderSortSpecifiers": "true" }