Where
by Where
~1 min read

eslint-plugin-vue

主页:https://eslint.vuejs.org/

这个项目为所有的 vue 项目提供了统一的渐进的风格指南,我强烈推荐 vue 项目统一使用该样式。

.eslintrc.js

module.exports = {
  root: true,
  env: {
    node: true
  },
  extends: ["plugin:vue/essential", "@vue/prettier"],
  rules: {
    "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
  },
  parserOptions: {
    parser: "babel-eslint"
  }
};

.prettierrc.js

module.exports = {
  printWidth: 120
};