HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
😻
지은팀
/
🔜
FE - 최종 프로젝트
/
📄
ESLint, Prettier 설정
📄

ESLint, Prettier 설정

태그
컨벤션
  • eslint : airbnb + TS
https://www.npmjs.com/package/eslint-config-airbnb-typescript
{ "extends": ["react-app", "airbnb", "prettier", "plugin:react/jsx-runtime"], "rules": { "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "react/jsx-props-no-spreading": "OFF", "react/function-component-definition": "OFF", "react/require-default-props": "OFF", "no-unused-expressions": ["error", { "allowShortCircuit": true }], "no-underscore-dangle": "off" } }
  • prettier
{ "printWidth": 80, "singleQuote": false, "semi": true, "useTabs": false, "tabWidth": 2, "trailingComma": "es5", "quoteProps": "as-needed", "jsxSingleQuote": false, "bracketSpacing": true, "bracketSameLine": false, "arrowParens": "always", "endOfLine": "lf", "singleAttributePerLine": false }