HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🤩
개발
/
NodeJs
NodeJs
/
Prettier & ESLint

Prettier & ESLint

Node.js (Express) with TypeScript, Eslint, Jest, Prettier and Husky — Part 2
ESLint, Prettier Setting 헤매지 말고 정확히 알고 설정하자

ESLint

  • ESLint는 ECMAScript를 위한 linter임
  • linter : 소스코드를 분석하여 프로그래밍 에러 bug, stylistic error, suspicious construct에 flag를 띄워줌

TroubleShooting

  • vue/no-v-model-argument 'v-model' directives require no argument.eslint-plugin-vue
    • .eslintrc.js 에 "vue/no-v-model-argument": "off" 를 추가

Prettier

  • code foramtter.