我在Vue项目中使用eslint-plugin-vue

我有以下.prettierrc文件:

// /.prettierrc
{
  "arrowParens": "avoid",
  "bracketSpacing": true,
  "insertPragma": false,
  "jsxBracketSameLine": false,
  "printWidth": 80,
  "proseWrap": "preserve",
  "requirePragma": false,
  "semi": false,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "useTabs": false
}

以及以下.eslintrc.js文件:

module.exports = {
  root: true,
  env: {
    node: true,
  },
  extends: [
    'plugin:vue/recommended',
    '@vue/prettier',
  ],
  rules: {
    'linebreak-style': ['error', 'unix'],
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'vue/max-attributes-per-line': 'off',
    'vue/html-self-closing': [
      'error',
      {
        html: {
          void: 'always',
          normal: 'always',
          component: 'always',
        },
        svg: 'always',
        math: 'always',
      },
    ],
  },
  plugins: ['vue'],
  parserOptions: {
    parser: 'babel-eslint',
  },
}

但不幸的是,更漂亮的认为

<template>
  <header><a href="/" class="logo"> Home </a></header>
</template>



<template>
  <header>
    <a href="/" class="logo">
      Home
    </a>
  </header>
</template>

vue.js - 使用Prettier在Vue模板中保留垂直空格-LMLPHP

如何告诉漂亮的人在Vue模板中保留我的垂直空白?

是否有与我想要的规则类似的规则?

最佳答案

您唯一的选择(解决方法)是使用忽略。

Ex Js文件。// prettier-ignoreEx Html文件。<!-- prettier-ignore -->
https://prettier.io/docs/en/ignore.html

10-08 07:55