[Vuejs]-Eslint fix command is not fixing all of the vue/html-indent errors

-1👍

This is my .eslintrc.js

module.exports = {
  root: true,
  env: {
    node: true,
    browser: true,
  },
  extends: ['plugin:vue/essential', 'plugin:prettier/recommended', '@vue/prettier'],
  rules: {
    'eqeqeq': 'off',
    'no-plusplus': 'off',
    "no-return-assign": "off",
    'max-len': ['error', { code: 120, ignoreUrls: true, ignoreComments: true }],
    'linebreak-style': 0,
    'vue/max-attributes-per-line': 'off',
    'vue/component-name-in-template-casing': ['error', 'PascalCase'],
    'no-console': 'off',
    'no-restricted-syntax': [
      'error',
      {
        selector:
          "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
        message: 'Unexpected property on console object was called',
      },
    ],
  },
  parserOptions: {
    parser: 'babel-eslint',
  },
};

And .prettierrc

{
  "semi": true,
  "tabWidth": 2,
  "useTabs": false,
  "printWidth": 100,
  "singleQuote": true,
  "editor.insertSpaces": true,
  "trailingComma": "all",
  "bracketSpacing": true,
  "jsxBracketSameLine": true,
  "arrowParens": "always"
}

And vue.config.js

module.exports = {
  devServer: {
    host: '0.0.0.0',
    port: 3201,
    https: false,
    disableHostCheck: true,
  },
  runtimeCompiler: true,
  chainWebpack: (config) => {
    config.module
      .rule('eslint')
      .use('eslint-loader')
      .options({
        fix: true,
      });
  },
  pluginOptions: {
    apollo: {
      enableMocks: true,
      enableEngine: false,
      // Cross-Origin options
      cors: '*',
    },
  },
};

Leave a comment