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
oryarn
to clean up your project - Check any webpack configs for eslint loaders and references and delete those
Source:stackexchange.com