[Vuejs]-How to avoid indentation problem with ESlint?

1👍

If you want to turn off tab character.You can open the .eslintrc.js file and add a line rule.

rules: {
  'no-tabs': 'off'
}

But if you have just had enough, you can remove eslint from your project altogether.

This takes a few steps but it isn’t too difficult:

  • Delete .eslintrc.js file and .eslintignore file in your project
  • In your package.json, find and delete any dependencies which include eslint in the name
  • Remove any eslint configuration files, including any eslint configuration in package.json
  • Re-run npm install or yarn to clean up your project
  • Check any webpack configs for eslint loaders and references and delete those
👤Gleen

Leave a comment