ESLint & prettier 配置代码风格

环境同步:

1、ESlint,开启保存自动修复
ESLint & prettier 配置代码风格_第1张图片

配置文件 .eslintrc.cjs

  1. prettier 风格配置 https://prettier.io

    1. 使用单引号

    2. 不使用分号

    3. 每行宽度至多80字符

    4. 不加对象|数组最后逗号

    5. 换行符号不限制(win mac 不一致)

  2. vue组件名称多单词组成(忽略index.vue)

  3. props解构(关闭)

module.exports = {
  root: true,
  'extends': [ ... ],
  parserOptions: { ... },
  rules: {
    'prettier/prettier': [
      'warn',
      {
        singleQuote: true, // 单引号
        semi: false, // 无分号
        printWidth: 80, // 每行宽度至多80字符
        trailingComma: 'none', // 不加对象|数组最后逗号
        endOfLine: 'auto' // 换行符号不限制(win mac 不一致)
      }
    ],
    'vue/multi-word-component-names': [
      'warn',
      {
        ignores: ['index'] // vue组件名称多单词组成(忽略index.vue)
      }
    ],
    'vue/no-setup-props-destructure': ['off'], // 关闭 props 解构的校验
     // 添加未定义变量错误提示,[email protected] 关闭,这里加上是为了支持下一个章节演示。
    'no-undef': 'error'
  }
}

你可能感兴趣的:(前端,vue.js,javascript,前端)