Tips and tricks
How to disable eslint rules
Disable for specific page
add this on top of the file
/* eslint-disable */
Disable for whole project
Create a file named .eslintignore and enter
**/*
add this on top of the file
/* eslint-disable */
Create a file named .eslintignore and enter
**/*