Front/Vue.js
[Vue.js] 2. 프로젝트 구조 설명 / Es Lint 에러 확인
rules: { // test code // "no-console": "error", "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", "prettier/prettier": [ 'error', // 아래 규칙은 개인 선호에 따라 prettier문법을 적용 // https://prettier.io/docs/en/options.html { singleQuote: true, // '' semi: true, useTabs: false, tabWidth: 2, trailingComma: 'all', printWid..
2021. 2. 1. 14:15