关于分号和引号的配置

本地编辑器 配置完善之后
在项目中创建.prettierrc 配置文件

  1. {
  2. "semi": false,
  3. "singleQuote": true
  4. }

关于函数名后的空格问题

保留本地编辑器配置之后
在项目中的.eslintrc.js 配置文件中

  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: ['plugin:vue/essential', '@vue/standard'],
  7. parserOptions: {
  8. parser: 'babel-eslint'
  9. },
  10. rules: {
  11. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  12. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  13. 'space-before-function-paren': [0] // 增加规则
  14. }
  15. }